interface imgixCropImage { height: number; width: number; id: string; } interface CompressImage { baseUrl?: string; height?: number; width?: number; id: string; url?: string; } interface CompressImageWithUrl { height?: number; width?: number; url?: string; } export declare const cropImage: ({ height, width, id }: imgixCropImage) => string; export declare const compressImage: ({ height, width, id }: CompressImage) => string; export declare const compressImageWithUrl: ({ height, width, url }: CompressImageWithUrl) => string; export {};