import { TextBaseProps } from '../base/textBase'; /** * Props for Label. * Extends TextBaseProps except component. * * @category Typography */ export type LabelProps = Omit; /** * Label semantic text. * Renders native label element with default labelLarge font. * * @function * @param props - Typography props. * * @category Typography */ export declare const Label: import('react').ForwardRefExoticComponent>;