/**
 * Wraps the given text in a span with a tooltip if the tooltip is provided.
 * @param text    - The text to wrap
 * @param tooltip - The tooltip to add
 */
export declare function textWithTooltip(text: string, tooltip?: string): string;
