import { bus } from '../bus'; export declare const ActionType = "ADD_ONE_TO_MANY_EDGE"; declare type ActionType = typeof ActionType; export declare type Action = { type: ActionType; start: string; end: string; name: string; params: bus.OneToManyEdgeInput; }; export declare const reducer: (schema: bus.Schema, action: bus.ducks.oneToMany.Action) => bus.Schema; export {};