type Json = Record; type Action = { type: string; id?: string; verb?: string; payload?: Json; }; export declare const $a: (actionType: string, verb: string, id?: string, payload?: Json) => Action; export declare const $ac: (actionType: string, json?: Json) => Action; export {};