import * as React from "react"; export interface Props { label: string; className?: string; hideLabel?: boolean; htmlFor?: string; required?: boolean; nativeRequired?: boolean; } declare const InputLabel: React.FC; export default InputLabel;