/// <reference types="react" />
import { CardProps } from '../Card';
export interface LabelFieldProps {
    className?: string;
    as?: string;
    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;
