import { AfterContentInit } from '@angular/core'; import { StringBoolean } from '../../utilities/type/type'; import { BzToastrService } from '../toastr/toastr.service'; import { BzCodeBoxDirective } from './code-box.directive'; export declare class BzCodeBoxComponent implements AfterContentInit { private toasterService; numberOfLines: number; linesArray: number[]; textValue: string; isHeaderValue: boolean; private _subscription; title: string; maxHeight: string; set isHeader(value: StringBoolean); codeBox: BzCodeBoxDirective; constructor(toasterService: BzToastrService); ngAfterContentInit(): void; /** * Copy to clipBoard. * * @author Federico Gambardella */ copy(): void; onDestroy(): void; }