import { FunctionComponent } from 'react';
import { CommonProps } from '../../types';
interface LabelProps extends CommonProps {
    htmlFor?: string;
}
declare const Label: FunctionComponent<LabelProps>;
export default Label;
