/** * Represents the information about the token authenticated users get and use to make authenticated requests * Each AuthToken has an expiration time of 30 days. */ export declare class AuthToken { private static readonly TOKEN_BYTE_LENGTH; private static readonly TOKEN_EXPIRY_DAYS; id: string; token: string; issued: number; expires: number; constructor(); }