import type { UserProfile } from './profile'; // 用户搜索结果 export interface UserSearchRequest { keyword: string; } export interface UserSearchResponse { users: Array total: number; }