import { ServiceContainer } from './utils/ServiceOwner'; import { ServiceRecord, InitCallback } from './utils/Types'; import { lps } from './services/LPSService'; export { lps }; export declare type AsyncMethod = (callback: Function) => void; export declare function init(owner: ServiceContainer, records: ServiceRecord[], callback: InitCallback, initWrapper?: (initFunction: AsyncMethod, service: string) => AsyncMethod): void;