import React from "react"; import { TypographyProps } from "../Typography"; export type LabelProps = { /** * The primary text to display in the label. */ label?: string; /** * The secondary text to display in the label. */ meta?: string; }; export declare const Label: { (props: LabelProps & TypographyProps): React.JSX.Element; displayName: string; };