import * as React from "react"; import { type FormComponentProps } from "../../../FormComponent/index.js"; type FilePickerLabelProps = Pick & { invalid?: boolean; className?: string; }; declare const FilePickerLabel: ({ label, hint, required, disabled, invalid, className }: FilePickerLabelProps) => React.JSX.Element | null; export { FilePickerLabel, type FilePickerLabelProps };