export declare const defaultCodingAgentIds: readonly ["codex", "cursor", "copilot", "claude-code"]; export type DefaultCodingAgent = (typeof defaultCodingAgentIds)[number]; export declare const defaultCodingAgentOption: { name: string; cliFlag: "coding-agent"; description: () => import("react/jsx-runtime").JSX.Element; ssrName: null; docLink: string; type: "claude-code" | "codex" | "copilot" | "cursor" | null; getValue: ({ commandLine }: { commandLine: Record; }) => { value: "claude-code" | "codex" | "copilot" | "cursor" | null; source: string; }; setConfig(value: "claude-code" | "codex" | "copilot" | "cursor" | null): void; id: "coding-agent"; };