import { Predicate } from '@onepoint-yap/dashboard'; export declare const predicatesFeatureKey = "@yap/admin/predicates"; export interface PredicateState { predicates: Predicate[]; loading: boolean; currentPredicate?: Predicate; } export declare const initialPredicateState: PredicateState; export declare const predicateReducer: import("@ngrx/store").ActionReducer;