import { AccountArgs, CommonArgs, ConfigArgs, EnvironmentArgs, OverwriteArgs, YargsCommandModule } from '../../types/Yargs.js'; type FileManagerFetchArgs = CommonArgs & ConfigArgs & AccountArgs & EnvironmentArgs & OverwriteArgs & { src: string; dest: string; includeArchived?: boolean; }; declare const fileManagerFetchCommand: YargsCommandModule; export default fileManagerFetchCommand;