import { StyleProps } from "../../utils/add-custom-style";
import { Variant } from "./interface";
interface LabelRootProps {
    $variant: Variant;
    $label: string;
    $focus: boolean;
    $error: boolean;
    $warning: boolean;
    $success: boolean;
    $styled: StyleProps;
}
declare const LabelRoot: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, LabelRootProps, never>;
export default LabelRoot;
