import type { HTMLProps } from 'react';
export type TextLabelProps = {
    label: string;
} & Omit<HTMLProps<HTMLSpanElement>, 'label'>;
export declare function TextLabel({ label, ...props }: TextLabelProps): import("react/jsx-runtime").JSX.Element;
