import { ReactElement } from "react"; //#region src/og/ImageResponse.d.ts interface ImageResponseOptions { width?: number; height?: number; } interface ImageResponseSize { width: number; height: number; } declare class ImageResponse { private element; private options; constructor(element: ReactElement, options?: ImageResponseOptions); toJSON(): { type: string; element: any; options: ImageResponseOptions; }; private resolveAndInvoke; private serializeElement; private serializeChildren; private serializeProps; } //#endregion export { ImageResponse, type ImageResponseOptions, type ImageResponseSize };