import { ElementType, PropsWithChildren } from 'react'; import { BaseProps } from '../types.js'; import '@emotion/react'; type LabelProps = PropsWithChildren> & { /** * @default "primary" */ type?: "primary" | "secondary"; text: string | number; bold?: boolean; }; export { LabelProps };