import { IPXOptions } from 'ipx'; import { Handler } from '@netlify/functions'; import { RemotePattern } from './utils'; export interface IPXHandlerOptions extends Partial { cacheDir?: string; basePath?: string; propsEncoding?: 'base64' | undefined; bypassDomainCheck?: boolean; remotePatterns?: RemotePattern[]; } export declare function createIPXHandler({ cacheDir, basePath, propsEncoding, bypassDomainCheck, remotePatterns, ...opts }?: IPXHandlerOptions): Handler;