/** * AUTO-GENERATED by scripts/generate-sdk.ts DO NOT EDIT — changes will be overwritten. Source: tools-manifest.json (sha256:2f1a623ec115...) domain-map.json (sha256:ffa082d8fbe7...) Generated: 2026-04-28T20:49:35.251Z */ import { type StitchToolClient } from "../../src/client.js"; import { Project } from "../../src/project-ext.js"; /** Main entry point. Manages projects. */ export declare class Stitch { private client; constructor(client: StitchToolClient); /** * Lists all Stitch projects accessible to the user. By default, it lists projects owned by the user. * Tool: list_projects */ projects(): Promise; /** * Creates a new Stitch project. A project is a container for UI designs and frontend code. * Tool: create_project */ createProject(title?: string): Promise; /** Create a Project handle from an existing ID without an API call. */ project(id: string): Project; } //# sourceMappingURL=stitch.d.ts.map