declare const defaultConfig: { quality: number; maxWidth: number; maxHeight: number; }; declare type Config = typeof defaultConfig; declare type Options = Partial; export declare function resizeImage(file: File, options: Options): Promise; export {};