/** * The component for selecting a single file or multiple files for upload. * * Also extends the props of `` element * * @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/file */ export declare const FileBox: import("react").ForwardRefExoticComponent<{ invalid?: import("../../styled-system/recipes").TextBoxSlotRecipeVariant["invalid"]; disabled?: boolean; multiple?: import("react").ComponentPropsWithoutRef<"input">["multiple"]; accept?: import("react").ComponentPropsWithoutRef<"input">["accept"]; buttonLabel?: string; placeholder?: string; multipleFilesSuffixLabel?: string; clearButtonProps?: Pick; } & Omit, HTMLInputElement>, "ref"> & import("react").RefAttributes>;