import type { ThumbnailPreview } from './ThumbnailPreview'; /** * Creates a typed `ThumbnailPreview` from a `File`. * Falls back to an 'other' preview if the media type cannot be determined. * * Note: The returned preview will use an Object URL. Call `URL.revokeObjectURL` * when you no longer need it to avoid memory leaks. * * @public */ export declare function createThumbnailPreviewFromFile(file: File): ThumbnailPreview; //# sourceMappingURL=ThumbnailPreviewFactory.d.ts.map