export type ToolRow = { name: string; description?: string | null; }; /** * Project-level Tools. v2 port of app/(dashboard)/projects/[id]/tools/*. * * Kept: browse the built-in catalog (read-only reference), the project's * custom-tools list from GET /v1/projects/:id/tools, and create/edit/delete. * * Trimmed from v1 (heaviest extras): the AI test/eval generators, the "Try it" * runner + AI-example endpoints, and the raw-JSON/guided-form args builder. * Authoring is a single Monaco editor + streaming deploy (see * tool-editor-dialog.tsx). The runtime endpoints (/generate, /run, /example) * are left untouched server-side. */ export declare function ToolsView({ projectId, initialTools, }: { projectId: string; initialTools: ToolRow[]; }): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=tools-view.d.ts.map