export declare const compressImage: (args: import("@hylid/types").AsyncCallback<{ apFilePaths: string[]; }> & { apFilePaths: string[]; compressLevel?: number | undefined; compressedWidth?: number | undefined; compressedHeight?: number | undefined; maxWidth?: number | undefined; maxHeight?: number | undefined; }) => void; export default compressImage; export declare const compressImageAsync: (args?: (import("@hylid/types").AsyncCallback<{ apFilePaths: string[]; }> & { apFilePaths: string[]; compressLevel?: number | undefined; compressedWidth?: number | undefined; compressedHeight?: number | undefined; maxWidth?: number | undefined; maxHeight?: number | undefined; }) | undefined) => Promise<{ apFilePaths: string[]; }>;