import { OperatorFunction } from 'rxjs'; import { StateFactory } from '../types/state-factory'; export declare type StatePipe = OperatorFunction; export declare type StatePipes = StatePipe[]; export interface StateMeta { name: string; defaults?: T; pipes?: StatePipes; factory?: StateFactory; }