import { Plugin } from "vite"; import { ImageResponse } from "@vercel/og"; //#region src/og-image-generator.d.ts type ImageResponseOptions = Omit[1]>, keyof ResponseInit>; //#endregion //#region src/index.d.ts interface OgImagePluginOptions { componentPath?: string | undefined; host: string; alt?: string | undefined; imageResponseOptions?: ImageResponseOptions | undefined; } declare function ogImagePlugin(ogImagePluginOptions: OgImagePluginOptions): Plugin; //#endregion export { OgImagePluginOptions, ogImagePlugin as default }; //# sourceMappingURL=index.d.mts.map