import * as react from 'react'; import { ElementType } from 'react'; import * as _emotion_react from '@emotion/react'; export { LabelProps } from './Label.types.js'; import '../types.js'; declare const Label: react.ForwardRefExoticComponent<{ as?: ElementType | undefined; native?: ({ [x: `data-${string}`]: string | boolean | undefined; } & Omit) | undefined; } & { className?: string | undefined; sx?: _emotion_react.CSSObject | undefined; } & { children?: react.ReactNode; } & { type?: "primary" | "secondary" | undefined; text: string | number; bold?: boolean | undefined; } & react.RefAttributes>; export { Label };