import { bus } from '../bus'; export declare const ActionType = "ADD_COMMIT"; declare type ActionType = typeof ActionType; export declare type Action = { type: ActionType; name: string; }; export declare const reducer: (schema: bus.Schema, action: bus.ducks.commit.Action) => bus.Schema; export {};