import { CLIContextTransport } from "../context"; export interface CLIUserConfig { id?: string; email?: string; debuggAiRepoSettings?: { repoName?: string; repoPath?: string; primaryLanguage?: string; testingLanguage?: string; testingFramework?: string; framework?: string; }; debuggAiRepoSettingsLs?: Array<{ repoName?: string; repoPath?: string; primaryLanguage?: string; testingLanguage?: string; testingFramework?: string; framework?: string; }>; } export interface CLIUsersService { getUserConfig(): Promise; getCurrentUser(): Promise<{ id?: string; email?: string; } | null>; } export declare const createCLIUsersService: (transport: CLIContextTransport) => CLIUsersService; //# sourceMappingURL=users.d.ts.map