export type RenderToImageOptions = any;

export async function renderToImageAsync(
  glyphs: string,
  options: RenderToImageOptions
): Promise<string> {
  return '';
}
