import { default as React } from 'react'; type FileSelectButtonProps = { onChange: React.ChangeEventHandler; accept?: string; multiple?: boolean; disabled?: boolean; hasSelection?: boolean; chooseText?: React.ReactNode; changeText?: React.ReactNode; labelClassName?: string; inputId?: string; }; declare const FileSelectButton: React.ForwardRefExoticComponent>; export default FileSelectButton; export type { FileSelectButtonProps }; //# sourceMappingURL=FileSelectButton.d.ts.map