/**
 * Represents the properties of the feature toggle
 * with value for current tenant and the strategy that provided this value.
 */
export interface IFeatureToggle {
    /**
     * Feature key.
     */
    key: string;
    /**
     * Specifies the current phase of a given feature.
     */
    phase: 'IN_DEVELOPMENT' | 'PRIVATE_PREVIEW' | 'PUBLIC_PREVIEW' | 'GENERALLY_AVAILABLE';
    /**
     * Indicates whether the given feature is active.
     */
    active: boolean;
    /**
     * Indicates whether the feature toggle applies to the platform or the tenant.
     */
    strategy: 'DEFAULT' | 'TENANT';
}
export interface FeatureToggleQueryFilter {
    pageSize?: number;
    withTotalPages?: boolean;
    [key: string]: any;
}
//# sourceMappingURL=IFeatureToggle.d.ts.map