/**
 * Interface for Decoded JWT tokens.
 */
export interface DecodedAuthToken {
    header: string;
    JWSPayload: string;
    JWSSig: string;
}
//# sourceMappingURL=DecodedAuthToken.d.ts.map