import React from "react"; export interface Props { htmlFor?: string; label: string; type?: string; required?: boolean; } declare function FormLabel({ htmlFor, label, type, required }: Props): React.JSX.Element; export default FormLabel;