import { OnInit } from '@angular/core'; import { Dictionary } from '../../models/IDictionary'; export declare class PeerComponent implements OnInit { /** * Text to display in the peer * @internal */ text: string; /** * Peer type * Options: success, info, warning, danger; * Default value: success * @internal */ peerType: string; styleDictionary: Dictionary; constructor(); ngOnInit(): void; private createDictionary; private validateType; }