import { AbstractSession } from "@zowe/imperative"; import { FeatureState } from "."; export declare enum FeatureId { LOGICAL_VIEW_FILTERS = "logical-view-filters" } export declare class Features { static getState(session: AbstractSession, feature: FeatureId): Promise; static getStateImpl(session: AbstractSession, identifier: string): Promise; private static readonly stateCache; private static readonly URI_PREFIX; private static readonly DEFAULT_STATE; }