import { ConfigBase, IConfigBase } from "./ConfigBase"; export interface IAutoUpdateConfig extends IConfigBase { refreshInterval: number; } export declare class AutoUpdateConfig extends ConfigBase implements IAutoUpdateConfig { refreshInterval: number; constructor(_sdkKey: string, _options: IAutoUpdateConfig); }