export interface FileAttachProps { title?: string; layoutMod?: string; documentList?: string; maxFilesLength?: number; showPassportInput?: boolean; showDocumentList?: boolean; fileTypeMessage?: string; changeListEvent?: (files: File[]) => void; maxFilesLengthError?: () => void; } export declare const FileAttach: ({ title, layoutMod, documentList, maxFilesLength, showPassportInput, showDocumentList, fileTypeMessage, changeListEvent, maxFilesLengthError }: FileAttachProps) => JSX.Element;