import { ICommandHandler } from '@nestjs/cqrs';
import { SetCredentialsCommand } from '../commands';
import { AuthService } from '../auth.service';
export declare class SetCredentialsCommandHandler implements ICommandHandler<SetCredentialsCommand> {
    private readonly authService;
    constructor(authService: AuthService);
    execute(command: SetCredentialsCommand): Promise<any>;
}
//# sourceMappingURL=set-credentials.handler.d.ts.map