import { PossibleActionsEnum } from './PossibleActionsEnum';
/** Node possible actions */
export interface PossibleActions {
    /** A string representation of the action to be performed */
    action: PossibleActionsEnum;
    /** Is the action currently possible to perform */
    isPossible: boolean;
    /** Reason the action is not possible */
    reason?: string;
}
//# sourceMappingURL=PossibleActions.d.ts.map