export type TProviderType = 'gitea' | 'gitlab'; export interface IProviderConnection { id: string; name: string; providerType: TProviderType; baseUrl: string; token: string; createdAt: number; status: 'connected' | 'disconnected' | 'error'; }