/** An oAuth2 accesss token details */
export interface AccessToken {
    /** token's creation date */
    createdAt: string;
    /** token's expiration date */
    expiresAt?: string;
    /** id of the token */
    id: string;
    /** list of scopes the token has */
    scopes: string[];
}
//# sourceMappingURL=AccessToken.d.ts.map