import { MatSnackBar } from '@angular/material/snack-bar'; import { SafeHtml } from '@angular/platform-browser'; import * as i0 from "@angular/core"; /** * Display an html representation of code * with an optional copy-to-clipboard button. * @author Will Davis */ export declare class RdsCodeSnippetComponent { private snackBar; /** Raw html to insert */ html: string | SafeHtml | null | undefined; /** Optional version of the code to copy to the clipboard */ clipboardCode?: string; /** Tooltip message for copy to clipboard buton, defaults to 'Copy the code' */ clipboardTooltip: string; constructor(snackBar: MatSnackBar); showCopyConfirmation(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }