import { ReactNode } from 'react'; import { NoteProps } from '../Note/index.js'; type FormFieldProps = { label?: string; description?: string; error?: string; children: ReactNode; note?: Pick; }; declare function FormField({ children, label, description, error, note, }: FormFieldProps): import("react/jsx-runtime").JSX.Element; export { FormField }; export type { FormFieldProps };