import { RulesetRule } from '../Api/interfaces';
export default class Ruleset {
    needsSessionRestore: boolean;
    private noShow;
    private static instance;
    private apiInstance;
    private locationInstance;
    private constructor();
    static getInstance(): Ruleset;
    static resetInstance(): void;
    unsetNoShow(): void;
    getIsUsingNoShow(): boolean;
    getNoShow(): boolean;
    setNoShow(value: boolean): void;
    resolveSettingsId(): Promise<RulesetRule>;
}
