import { ReactNode } from "react"; export declare type FormLabelProps = { htmlFor: string; children?: ReactNode; required?: boolean; }; export declare const FormLabel: ({ htmlFor, children, required, }: FormLabelProps) => import("@emotion/react/jsx-runtime").JSX.Element;