/// export declare type UploadAttachmentsType = 'single' | 'multi'; export interface IBInputFileProps { type: UploadAttachmentsType; onChange?(file: File | File[]): any; className?: string; children: React.ReactNode; accept?: string; disabled?: boolean; testId?: string; }