import { KeybindingRegistry as Service } from './registry'; declare const SERVICE_NAME = "keybindingRegistry"; declare module '../core/platform' { interface PlatformServiceNameType { /** * @see {@link Service KeybindingRegistry} * * @note Work in progress, do not use! * @private */ KeybindingRegistry: typeof SERVICE_NAME; } interface LimeWebComponentPlatform { get(name: PlatformServiceNameType['KeybindingRegistry']): Service; } } export {};