import { LogicAction } from "../action/logicAction";
import { Chainable } from "../action/chain";
export declare class Actionable<StateData extends Record<string, any> | null = Record<string, any>, Self extends Actionable = any> extends Chainable<LogicAction.Actions, Self> {
constructor();
}