import { CommonArgs, ConfigArgs, EnvironmentArgs, AccountArgs, JSONOutputArgs, YargsCommandModule } from '../types/Yargs.js'; declare const HTTP_METHODS: readonly ["GET", "POST", "PUT", "PATCH", "DELETE"]; type HttpMethod = (typeof HTTP_METHODS)[number]; export type ApiArgs = CommonArgs & ConfigArgs & EnvironmentArgs & AccountArgs & JSONOutputArgs & { endpoint: string; method?: HttpMethod; data?: string; }; declare const apiCommand: YargsCommandModule; export default apiCommand;