import { EventEmitter } from '../../stencil-public-runtime'; import { IconPack } from '../../lib/icons'; import { DyteI18n } from '../../lib/lang'; import { Meeting } from '../../types/dyte-client'; import { Size, States } from '../../types/props'; import { ControlBarVariant } from '../dyte-controlbar-button/dyte-controlbar-button'; /** * A button which toggles visibility of plugins. * * When clicked it emits a `dyteStateUpdate` event with the data: * * ```ts * { activeSidebar: boolean; sidebar: 'plugins' } * ``` */ export declare class DytePluginsToggle { /** Variant */ variant: ControlBarVariant; /** Meeting object */ meeting: Meeting; /** States object */ states: States; /** Size */ size: Size; /** Icon pack */ iconPack: IconPack; /** Language */ t: DyteI18n; pluginsActive: boolean; canViewPlugins: boolean; disconnectedCallback(): void; connectedCallback(): void; meetingChanged(meeting: Meeting): void; statesChanged(states?: States): void; /** Emits updated state data */ stateUpdate: EventEmitter; private togglePlugins; private updateCanView; render(): any; }