import { ChangeDetectorRef, TemplateRef } from '@angular/core';
/**
* @description Компонент для показа примера, с откытием кода, ts/html
*
* @example
*/
export declare class SbExamplerComponent {
private changeDetectorRef;
title: string;
tsFile: string;
htmlFile: string;
template: TemplateRef;
language: string;
isExpandedTypescript: boolean;
isExpandedHtml: boolean;
isExpandedTemplate: boolean;
isCopied: boolean;
private currentListing;
constructor(changeDetectorRef: ChangeDetectorRef);
toggleTypescript(): void;
toggleHtml(): void;
toggleTemplate(): void;
copy(): void;
emitCode(listing: string): void;
}