import { ServiceBase } from "./ServiceBase"; import { IAutoUpdateConfig } from "./AutoUpdateConfig"; export interface IAutoUpdateService { ForceRefresh(): void; GetFlags(callback: (value: any) => void): void; } export declare class AutoUpdateService extends ServiceBase implements IAutoUpdateService { private timer; constructor(_config: IAutoUpdateConfig); Start(): void; ForceRefresh(): void; private refresh; GetFlags(callback: (_value: any) => void): void; GetFlagsLocal(): void; }