import { CommonArgs, ConfigArgs, AccountArgs, EnvironmentArgs, YargsCommandModule } from '../../types/Yargs.js'; type CustomObjectCreateArgs = CommonArgs & ConfigArgs & AccountArgs & EnvironmentArgs & { name?: string; path?: string; }; declare const customObjectCreateCommand: YargsCommandModule; export default customObjectCreateCommand;