export declare class DidAuthRequestToken { private readonly _str; private readonly _iss; private readonly _createdAt; private readonly _exp?; private constructor(); get iss(): string; get createdAt(): number; get exp(): number | undefined; toString(): string; static fromString(str: string): DidAuthRequestToken; }