export declare const CREATE_FUNCTION = "CREATE_FUNCTION"; export declare const DELETE_FUNCTION = "DELETE_FUNCTION"; export declare const TOGGLE_FUNCTION = "TOGGLE_FUNCTION"; export declare const SET_FUNCTION = "SET_FUNCTION"; export declare const SET_FUNCTION_TRANSFER = "SET_FUNCTION_TRANSFER"; export declare const SET_FUNCTION_VALUE = "SET_FUNCTION_VALUE"; export declare const createFunction: (name: string, func: string) => { type: string; name: string; func: string; }; export declare const deleteFunction: (id: string) => { type: string; id: string; }; export declare const toggleFunction: (id: string) => { type: string; id: string; }; export declare const setFunction: (id: string, name: string, func: string) => { type: string; id: string; name: string; func: string; }; export declare const setFunctionTransfer: (id: string, transfer: number | null) => { type: string; id: string; transfer: number | null; }; export declare const setFunctionValue: (id: string, value: number | null) => { type: string; id: string; value: number | null; }; //# sourceMappingURL=customFunctions.d.ts.map