export interface PostTokenRefresh {
    refreshToken: string;
}
export interface Tokens {
    accessToken: string;
    expiresIn: number;
    tokenType: 'Bearer';
    refreshToken: string;
    scope: string;
}
export interface PostTokenRevoke {
    refreshToken: string;
}
export interface AbsoluteTokens {
    accessToken: string;
    refreshToken: string;
    expiresAt: number;
}
//# sourceMappingURL=aegapi-auth-types.d.ts.map