interface TLabelProps {
    htmlFor: string;
    text: string;
}
declare const Label: ({ htmlFor, text }: TLabelProps) => import("react/jsx-runtime").JSX.Element;
export default Label;
