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