import { Service } from "./shared/service"; import { AuthResponse } from "./shared/type"; declare class AuthService extends Service { generateToken(clientId: string, clientSecret: string): Promise; } export default AuthService;