import { PKCEPairType } from "../types"; import { Account } from "../Account"; export declare class MicrosoftAccount extends Account { refreshToken?: string; authCode?: string; constructor(); refresh(): Promise; authFlow(authCode: string, PKCEPair?: PKCEPairType): Promise; use(): Promise; }