import type { ButtonSize } from "../Button"; export interface InputFileContentContextValue { readonly fileType: string; readonly allowMultiple: boolean; readonly description: string | undefined; readonly hintText: string; readonly buttonLabel: string; readonly size: ButtonSize; } declare const InputFileContentContext: import("react").Context; declare function useInputFileContentContext(): InputFileContentContextValue; export { InputFileContentContext, useInputFileContentContext };