import { PlatformTestingSdkOpts } from "../interfaces/index.js";
export declare class TokenService {
    private _token;
    token(token?: string): string;
    isValid(token: string | undefined): RegExpMatchArray | null;
}
export declare function OAuth(options?: any): Function;
export declare function testAuth(options: PlatformTestingSdkOpts): void;
