import { ConfigService } from "@nestjs/config"; import { FastifyReply } from "fastify"; import { BaseConfigInterface } from "../../../config/interfaces"; import { AuthDiscordService } from "../services/auth.discord.service"; export declare class AuthDiscordController { private readonly authDiscordService; private readonly configService; constructor(authDiscordService: AuthDiscordService, configService: ConfigService); private get discordConfig(); loginWithDiscord(reply: FastifyReply, inviteCode?: string, referralCode?: string): Promise; callbackDiscord(reply: FastifyReply, code: string, state?: string): Promise; } //# sourceMappingURL=auth.discord.controller.d.ts.map