import { type CreateCrowdyStudioProjectInput, type CrowdyStudioProjectKind } from './models.js'; export interface CrowdyStudioNewProjectOptions { appId: string; gridId: string; name: string; kind: CrowdyStudioProjectKind; description?: string; } /** Create a compile-oriented starter without introducing a raw JSON source map. */ export declare function createCrowdyStudioStarterProject(options: CrowdyStudioNewProjectOptions): CreateCrowdyStudioProjectInput; //# sourceMappingURL=starter-projects.d.ts.map