import { SatoriOptions } from 'satori'; interface ImageResponseOptions { width?: number; height?: number; fonts?: SatoriOptions['fonts']; debug?: boolean; status?: number; statusText?: string; headers?: Record; tailwindConfig?: SatoriOptions['tailwindConfig']; } declare class ImageResponse extends Response { constructor(element: string, options?: ImageResponseOptions); } export { ImageResponse }; export type { ImageResponseOptions };