import type { ILabelProps } from './Label.types'; /** * Label — accessible form label element. * * @example * ```tsx * * ``` */ declare function Label({ className, slots, ...props }: ILabelProps): import("react/jsx-runtime").JSX.Element; export { Label }; export type { ILabelProps } from './Label.types'; export type { LabelSlot } from './Label.styles'; //# sourceMappingURL=index.d.ts.map