import { FunctionalComponent } from "../stencil-public-runtime"; import { DuetColor, DuetMargin, DuetTextFontWeight, DuetTheme } from "../common-types"; export type DuetInternalLabelProps = { theme?: DuetTheme; for?: string; margin?: DuetMargin | "small"; size?: "small" | "medium"; weight?: DuetTextFontWeight; color?: DuetColor; id?: string; class?: string | object; }; export declare const DuetInternalLabel: FunctionalComponent;