import { PostHog } from './posthog-core';
import { RemoteConfig } from './types';
export declare class RemoteConfigLoader {
    private readonly _instance;
    constructor(_instance: PostHog);
    get remoteConfig(): RemoteConfig | undefined;
    private _loadRemoteConfigJs;
    private _loadRemoteConfigJSON;
    load(): void;
    private _onRemoteConfig;
}
