declare class UserSyncResult { success: boolean; email: string; action: string; lsUserId?: string; lsPermissions?: string; error?: string; } declare class UserSyncSummary { total: number; created: number; updated: number; deactivated: number; skipped: number; errors: number; results: UserSyncResult[]; } export declare class UserSyncMutation { /** * 현재 사용자를 Label Studio에 동기화 */ syncMyUserToLabelStudio(context: ResolverContext): Promise; /** * 도메인의 모든 사용자를 Label Studio에 일괄 동기화 */ syncAllUsersToLabelStudio(context: ResolverContext): Promise; } export {};