export declare type IDecodeBasicTokenResponse = false | { clientId: string; clientSecret: string; }; export declare function encodeBasicToken(clientId: string, clientSecret: string): string; export declare function decodeBasicToken(token: string): IDecodeBasicTokenResponse;