import { PipelineState } from '../pipeline/pipeline.slice'; import { RelationState } from '../relations/relations.slice'; import { Store } from '../store'; /** * Update an action pipeline in the store * @param store * @returns */ export declare const update: (store: Store) => (relId: string, pipelinePayload: Partial, relationPayload?: Partial | undefined) => void;