import { CommonArgs, ConfigArgs, AccountArgs, EnvironmentArgs, YargsCommandModule } from '../../../types/Yargs.js'; export type FunctionListArgs = CommonArgs & ConfigArgs & AccountArgs & EnvironmentArgs & { json?: boolean; }; declare const functionListCommand: YargsCommandModule; export default functionListCommand;