/// import { Server } from 'http'; import { AuthClient, HttpConnector } from '.'; /** * AccessToken with no expiration date */ export declare const ACCESS_TOKEN = "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1SWQiOiJ1c2VyXzEyMyIsImNJZCI6ImNvbXBhbnlfMTIzIiwic2NvcGUiOiJhOnI6dyIsImlhdCI6MTUxOTA2MjY4MH0.FPnQLylqy7hfTLULsNDLNhaswFD3HI7zxRt6G-u3h9s"; export declare const AT_COOKIE = "a_t"; export declare const RT_COOKIE = "r_t"; export declare const decode: (at: string) => {} | undefined; export declare const fetchConnector: HttpConnector; export declare const basicAuth: AuthClient; export declare const createServer: () => { server: Server; authClient: AuthClient; url: string; };