import React from "react";
import { ITypographyProps } from "../Typography/Typography";
export interface ILabelProps {
    invalid?: boolean;
    required?: boolean;
    size?: "regular" | "small";
    htmlFor?: string;
}
export declare const Label: React.ForwardRefExoticComponent<ILabelProps & Omit<ITypographyProps, "color" | "variant" | keyof ILabelProps> & React.RefAttributes<HTMLLabelElement>>;
//# sourceMappingURL=Label.d.ts.map