import type { HandlerResponse } from '@netlify/functions'; export interface SourceImageResult { response?: HandlerResponse; cacheKey?: string; responseEtag?: string; } export interface SourceImageOptions { cacheDir: string; url: string; requestHeaders?: Record; modifiers: string; isLocal?: boolean; requestEtag?: string; } export declare function loadSourceImage({ cacheDir, url, requestEtag, modifiers, isLocal, requestHeaders }: SourceImageOptions): Promise;