import { CommonArgs, ConfigArgs, AccountArgs, EnvironmentArgs, TestingArgs, YargsCommandModule } from '../../types/Yargs.js'; export type SandboxCreateArgs = CommonArgs & ConfigArgs & AccountArgs & EnvironmentArgs & TestingArgs & { name?: string; force?: boolean; type?: string; }; declare const sandboxCreateCommand: YargsCommandModule; export default sandboxCreateCommand;