import type { ComponentPropsWithoutRef } from 'react'; type FieldProps = ComponentPropsWithoutRef<'div'> & { invalid?: boolean; required?: boolean; }; declare function Field({ children, className, invalid, required, ...props }: FieldProps): import("react/jsx-runtime").JSX.Element; export type { FieldProps }; export default Field;