import { ImageResponse } from '@vercel/og'; import { DirectoryPath } from './path.js'; export type FontTextOptions = NonNullable[1]>['fonts']>[0]; export type FontEmojiOptions = NonNullable[1]>['emoji']; export type FontOptions = { emoji: FontEmojiOptions; text: FontTextOptions[] | undefined; }; export type FontUtilsOptions = { dir?: DirectoryPath; }; export declare class FontUtils { dir: DirectoryPath; constructor(param: FontUtilsOptions); getFonts(file: string, fetch: () => Promise): Promise>; } //# sourceMappingURL=font.d.ts.map