export interface Bot { id: string; name: string; rating: number; createdAt: string; } export interface BotWithToken extends Bot { token: string; }