import { MatSnackBar } from '@angular/material/snack-bar'; /** * 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; /** 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; }