import { UseHintProps } from '../Hint/useHint'; import { UseInlineErrorProps } from '../InlineError/useInlineError'; import { UseLabelPropsProps } from '../Label/useLabelProps'; type PropsToExclude = Omit & Partial & Partial, 'id' | 'inversed'> & { className?: string; }; /** * Cleans all the props associated with labels, hints, error messages, and component * wrappers, so they aren't passed to a field element (like an input), where they will * likely not be valid props or HTML attributes. */ export declare function cleanFieldProps(props: T): Omit; export default cleanFieldProps;