export interface IOptions {
    prefix?: string;
    sufix?: string;
    clean?: boolean;
    capitalize?: boolean;
    withExt?: boolean;
}
declare const getFileName: (file: File, options_?: IOptions) => string;
export default getFileName;
