import type { EnvEntry } from '../lib/session.js'; export interface EnvEditorConfig { list(): Promise; set(key: string, value: string, secret: boolean): Promise; delete(key: string): Promise; } export interface EnvEditorProps { config: EnvEditorConfig; onClose: () => void; } export declare function EnvEditor({ config, onClose }: EnvEditorProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=EnvEditor.d.ts.map