/** * User resource model for storing Twitter users who authenticate via the Login with X API */ export declare class UserResource { id: string; twitterId: string; username: string; linkedAt: Date; updatedAt?: Date; agentId?: string; } /** * User interface */ export interface User { id: string; twitterId: string; username: string; linkedAt: Date; updatedAt?: Date; agentId?: string; } //# sourceMappingURL=User.d.ts.map