export interface ImageProxyConfig { allowedDomains: string[] | ((hostname: string) => boolean); accept?: string; userAgent?: string; cacheMaxAge?: number; contentType?: string; /** Follow redirects (default: true). Set to false to reject redirects (SSRF protection). */ followRedirects?: boolean; /** Decode & in URL query parameter */ decodeAmpersands?: boolean; /** Unique name for the nitro cache group (defaults to derived from allowedDomains). */ cacheName?: string; } export declare function createImageProxyHandler(config: ImageProxyConfig): import("h3").EventHandler;