import { Command, type OptionValues } from 'commander';
/** Create domain based action command */
export declare function createActionCommand(): Command;
/** Creates action */
export declare function createAction(actionName: string | undefined, program: OptionValues): Promise<void>;
