export declare const port = 7505; export declare const state: string; export declare const clientID = "v4XVrdEH_A-ZaA"; export declare function authorizationURL(): string; export declare function getAccessToken(code: string): Promise; /** * Run through the full auth flow, with a callback that handles opening/prompting the user with the auth URL. * @param cb A function, which should return the resulting URL with a `code`. */ export declare function authFlow(cb: (url: string) => Promise): Promise;