import type { OAuth2Tokens } from "../oauth2.js"; export declare class MyAnimeList { private client; constructor(clientId: string, clientSecret: string, redirectURI: string | null); createAuthorizationURL(state: string, codeVerifier: string): URL; validateAuthorizationCode(code: string, codeVerifier: string): Promise; refreshAccessToken(refreshToken: string): Promise; }