export interface TextRowOptions { value: string; display?: string; className?: string; monospace?: boolean; title?: string; showCopyButton?: boolean; } export declare function renderTextRow(opts: TextRowOptions): string;