import type { Command } from 'commander'; export declare function applyAsyncActionProjectDir>(command: Command, resolve: () => Promise<{ actionAsync: (projectRoot: string, options: Options) => Promise; }>, settings?: { checkConfig?: boolean; skipSDKVersionRequirement?: true; }): void; export declare function applyAsyncAction>(command: Command, resolve: () => Promise<{ actionAsync: (args: Args, options: Options) => Promise; }>): void; export declare function applyAnyAsyncAction>(command: Command, resolve: () => Promise<{ actionAsync: (options: Options) => Promise; }>): void;