import { KubernetesResource } from '../../core/public-api';
export declare const DEFAULT_LIMIT_COUNT = 30;
export declare const ALL_VALUE = "All";
export declare enum OptionAction {
    Active = "active",
    Disabled = "disabled",
    Partial = "partial"
}
export declare const checkValueExit: <T extends string | KubernetesResource>(checkedValue: T, values: T[]) => boolean;
export declare const isSelectAll: <T extends string | KubernetesResource>(values: T[], allVal?: string) => boolean;
