import { CommandRunner } from 'nest-commander'; import { UsersService } from '../services/users.service'; export declare class ListUsersCommand extends CommandRunner { private readonly service; private readonly logger; constructor(service: UsersService); run(_passedParams: string[], _options?: Record): Promise; }