import React, { HTMLAttributes } from 'react';
export interface InputLabelProps extends HTMLAttributes {
children?: React.ReactNode;
/**
* Define the associated input identifier
*/
htmlFor: string;
}
export declare const InputLabel: (props: InputLabelProps) => JSX.Element;
export default InputLabel;