import type { EnvironmentVariable } from "#ai-utils"; import type { DevToolsSys } from "../../types"; interface CategorizedEnvVar { key: string; value: string; category: string; isSecret: boolean; shouldPreselect: boolean; fromDotEnv?: boolean; } /** * Filter and categorize environment variables */ export declare function filterAndCategorizeEnvVars(dotEnvVars?: Record): CategorizedEnvVar[]; /** * Present multiselect UI for environment variables */ export declare function selectEnvironmentVariables(sys: DevToolsSys, gitRoot: string): Promise; /** * Format environment variables summary */ export declare function formatEnvSummary(envVars: EnvironmentVariable[]): { total: number; secrets: number; public: number; }; export {};