declare const fileTypeMap: {
    excel: string;
    word: string;
    image: string;
    pdf: string;
    video: string;
    audio: string;
    text: string;
    csv: string;
};
export type FileType = keyof typeof fileTypeMap;
export declare const getAcceptAttribute: (fileType?: FileType) => string | undefined;
export {};
