import { QueryService } from './service'; declare const SERVICE_NAME = "query"; declare module '../core/platform' { interface PlatformServiceNameType { /** * @see {@link QueryService} */ Query: typeof SERVICE_NAME; } interface LimeWebComponentPlatform { get(name: PlatformServiceNameType['Query']): QueryService; } } export {};