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