/** * Response DTO for logging out a specific session * * @example * ```typescript * const response = await authService.logoutSession(dto); * // response.success === true * ``` */ export declare class LogoutSessionResponseDTO { /** * Whether the session was successfully revoked */ success: boolean; /** * Whether the revoked session was the current session */ wasCurrentSession: boolean; } //# sourceMappingURL=logout-session-response.dto.d.ts.map