import { CardProps } from '../Card'; import type { ElementType } from 'react'; export interface LabelFieldProps { className?: string; as?: ElementType; children?: React.ReactNode; size?: CardProps['size']; m?: string; bold?: boolean; tip?: string; onClear?: () => void; capitalize?: boolean; } export default function LabelField({ className, as, bold, m, size, capitalize, children, tip, onClear, ...rest }: LabelFieldProps): import("react/jsx-runtime").JSX.Element;