import type { OptionValues } from 'commander';
import type BaseCommand from '../base-command.js';
interface CreateOptions extends OptionValues {
    prompt?: string;
    agent?: string;
    model?: string;
    name?: string;
    dir?: string;
    accountSlug?: string;
    git?: string;
    repoOwner?: string;
    download?: boolean;
    wait?: boolean;
    json?: boolean;
}
export declare const createAction: (promptArg: string, options: CreateOptions, command: BaseCommand) => Promise<undefined>;
export {};
//# sourceMappingURL=create-action.d.ts.map