import type { ComponentPropsWithRef } from "react"; import type { SpaceProps } from "styled-system"; import { type DisplayProps } from "styled-system"; import type { ComponentVariant } from "../NDSProvider/ComponentVariantContext"; export interface LabelProps extends SpaceProps, DisplayProps, Omit, "color"> { disabled?: boolean; variant?: ComponentVariant; } declare const Label: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute, HTMLLabelElement>, LabelProps>> & string; export default Label;