import type { UploadableFile } from '../types'; type Dimensions = { width: number | null; height: number | null; }; declare const _default: { isFaultyImage: (file: UploadableFile) => Promise; isOptimizableImage: (file: UploadableFile) => Promise; isResizableImage: (file: UploadableFile) => Promise; isImage: (file: UploadableFile) => Promise; getDimensions: (file: UploadableFile) => Promise; generateResponsiveFormats: (file: UploadableFile) => Promise<{ key: string; file: UploadableFile; }[]>; generateThumbnail: (file: UploadableFile) => Promise; optimize: (file: UploadableFile) => Promise; generateFileName: (name: string) => string; }; export default _default; //# sourceMappingURL=image-manipulation.d.ts.map