import { FC, LabelHTMLAttributes } from 'react';
import './Textinput-Label.css';
interface TextinputLabelProps extends LabelHTMLAttributes<HTMLLabelElement> {
    floated?: boolean;
}
export declare const Label: FC<TextinputLabelProps>;
export {};
