import React from "react"; import type { LabelProps } from "./types"; declare function Label({ content, htmlFor, required, hasError, id }: LabelProps): React.JSX.Element; export default Label;