import { Command } from 'commander'; /** * Create an instance of a command runner for deployment. * * @param name - command name * @returns instance of the command */ export declare function createCommand(name: 'deploy' | 'undeploy'): Command; /** * Function that is to be executed when the exposed deploy command is executed. */ export declare function runDeploy(): Promise; /** * Function that is to be executed when the exposed undeploy command is executed. */ export declare function runUndeploy(): Promise; //# sourceMappingURL=index.d.ts.map