declare type TopBarProps = { copyText: string; }; declare type TopBarParts = { topBar: HTMLElement; copyButton: HTMLElement; }; export declare function createTopBar({ copyText }: TopBarProps): TopBarParts; export declare function linesToCopyText(lines: HTMLElement[], pfx: string): string; export {};