export declare class Token {
    private $signature;
    constructor(signature: string);
    getSignature(): string;
}
