import { GetImageUrlFromFileProps, GetUploaderDescriptionProps, GetUploaderTitleProps, OpenFileExplorerProps } from './types'; export declare const getUploaderTitle: ({ file, uploaderTitle, }: GetUploaderTitleProps) => string; export declare const getUploaderDescription: ({ file, maxSizeDescription, }: GetUploaderDescriptionProps) => string | undefined; export declare const getImageUrlFromFile: ({ file, fileId, }: GetImageUrlFromFileProps) => null | undefined; export declare const openFileExplorer: ({ file, errorMessage, inputId, }: OpenFileExplorerProps) => void; export declare const isImageFile: (file: File | string) => boolean;