import type { UseFileUploadStateReturn } from './useFileUploadState'; export type FileUploadContextValue = UseFileUploadStateReturn & { inputId: string; labelId: string; describedBy?: string; hasError: boolean; isRequired: boolean; disabled: boolean; isMultiple: boolean; accept?: string; maxSize?: number; maxFiles?: number; triggerRef: React.RefObject; }; export declare const FileUploadContext: React.Context; export declare function useFileUploadContext(): FileUploadContextValue; //# sourceMappingURL=FileUploadContext.d.ts.map