export declare class CodeSnippet { code: string; copyButtonText: string; copiedButtonText: string; language: string; copied: boolean; el: HTMLElement; handleCodeUpdate(): void; componentDidLoad(): void; highlightCode(): void; copyCode(): void; render(): any; }