import { EventEmitter } from '../../stencil-public-runtime'; import { DyteI18n } from '../../lib/lang'; import { Transcript } from '../../types/props'; /** * A component which shows a transcript. * * You need to remove the element after you receive the * `dyteTranscriptDismiss` event. */ export declare class DyteTranscript { /** Message */ transcript: Transcript & { renderedId?: string; }; /** Language */ t: DyteI18n; /** Dismiss event */ dismiss: EventEmitter<{ id: string; renderedId: string; }>; timeout: NodeJS.Timeout; connectedCallback(): void; transcriptChanged(transcript: Transcript & { renderedId?: string; }, oldTranscript?: Transcript & { renderedId?: string; }): void; render(): any; }