import { IconPack } from '../../lib/icons'; import { DyteI18n } from '../../lib/lang'; import { States, Size } from '../../types/props'; import { EventEmitter } from '../../stencil-public-runtime'; import { ControlBarVariant } from '../dyte-controlbar-button/dyte-controlbar-button'; /** * A button which toggles visilibility of the leave confirmation dialog. */ export declare class DyteLeaveButton { /** Variant */ variant: ControlBarVariant; /** Size */ size: Size; /** Icon pack */ iconPack: IconPack; /** Language */ t: DyteI18n; /** Emits updated state data */ stateUpdate: EventEmitter; private leave; render(): any; }