import { GenericInstruction, Operation } from "../index"; import { BlockvSession } from "../../bv-service"; import { OperationEntity } from "../entities"; export interface CreateActionInstructionData { name: string; reactor: string; config: any; params?: any; policy: any; wait: boolean; rollback: boolean; abort_on_pre_error: boolean; abort_on_post_error: boolean; abort_on_main_error: boolean; timeout: number; guest_user: boolean; state_impact?: string[]; } export declare type CreateActionInstruction = GenericInstruction; export declare function operatorCreateAction(instruction: CreateActionInstruction, blockv: BlockvSession): Promise; //# sourceMappingURL=create.d.ts.map