export declare enum ProgrammabilityEventCallType { Action = "action", DynamicComponent = "dynamic_component", DynamicComponentInTaskChannel = "dynamic_component_taskchannel", MethodUsage = "method_usage", EventUsage = "event_usage", Notification = "notification", SDKUsage = "sdk_usage", KeyboardShortcuts = "keyboard_shortcuts", CustomTaskChannelRegistration = "custom_task_channel_registration", TokenLifecycle = "token_lifecycle" } export interface ProgrammabilityEvent { callType: ProgrammabilityEventCallType; name: string; command: string; listenee?: string; options?: any; pluginName?: string; pluginVersion?: string; }