/**
* Utility component, mostly used internally in other design system components,
* for consistent presentation of text with optional associated tooltip.
*
* Example
* ```
* Email address
* Full name
* ```
*
* @slot - Label text content
*/
export declare class RLabel {
/** Text of an additional marker */
fieldIndicator?: string;
render(): any;
}