import { FunctionComponent, ReactNode } from 'react'; import { WidthScale } from './types'; interface UrlParams { src: string; width: number; quality: number; } interface ImageServerContext { children?: ReactNode; widthMap?: Record; srcUrlMapper: (params: UrlParams) => string; getWidthValue?(width: WidthScale): number; generateSrcSet(params: Omit): string; } export declare const widthMap: NonNullable; export declare const useImageServer: () => ImageServerContext; export declare const ImageServerProvider: FunctionComponent>; export {}; //# sourceMappingURL=ImageServerProvider.d.ts.map