import { PropsWithChildren } from 'react'; export interface FormControlProps extends PropsWithChildren { label?: string | JSX.Element; hint?: string | JSX.Element; state?: "default" | "error" | "warning" | "success"; className?: string; } export declare function FormControl({ children, label, hint, state, className }: FormControlProps): import("react/jsx-runtime").JSX.Element;