import AttachmentModel from '../../../models/AttachmentModel';
export type FileAttachmentConfig = {
    attachments: AttachmentModel[];
    setAttachments: (value: AttachmentModel[]) => void;
    inputAccept: string;
    maxCount: number;
    maxSize: number;
    acceptableFormatToString: (acceptableFileFormat: string | string[] | undefined) => string;
    handleFileUpload: (fileList: FileList | null) => void;
};
declare const useFileAttachment: () => FileAttachmentConfig;
export default useFileAttachment;
