import { IQueryHandler } from '@nestjs/cqrs'; import { AuthDataQuery } from '../queries/auth-data.query'; import { AuthService } from '../auth.service'; import { AuthState } from '../auth.state'; export declare class AuthDataQueryHandler implements IQueryHandler { private readonly authService; private readonly logger; constructor(authService: AuthService); execute(): Promise; } //# sourceMappingURL=auth-data.handler.d.ts.map