import { CommonProps } from '../common'; import { PropsWithChildren } from 'react'; export type LabelProps = { id?: string; htmlFor?: string; className?: string; children?: React.ReactNode; }; export type LabelOptionalProps = PropsWithChildren; export type LabelDescriptionProps = PropsWithChildren & { id?: string; }; declare const LabelNamespace: import("react").ForwardRefExoticComponent> & { Optional: ({ children, className }: LabelOptionalProps) => import("react").JSX.Element; Description: ({ id, children, className }: LabelDescriptionProps) => import("react").JSX.Element | null; }; export { LabelNamespace as Label }; //# sourceMappingURL=Label.d.ts.map