import type React from 'react'; import { type UseFileUploadStateOptions } from './useFileUploadState'; export type FileUploadProps = UseFileUploadStateOptions & { children?: React.ReactNode; label: string; hideLabel?: boolean; helperText?: string; error?: string; required?: boolean; id?: string; name?: string; className?: string; style?: React.CSSProperties; }; type FileUploadRootComponent = React.FC>; export declare const FileUploadRoot: FileUploadRootComponent; export {}; //# sourceMappingURL=FileUpload.d.ts.map