//#region src/create/index.d.ts /** * Project scaffolding for `pagesmith create`. * * Supports local templates (bundled) and remote templates (GitHub examples). */ type Template = { name: string; description: string; source: "local" | "github"; path: string; dependency: "@pagesmith/core" | "@pagesmith/site" | "@pagesmith/docs"; scripts: Record; }; declare const templates: Template[]; declare function listTemplates(): string; declare function createProject(projectName: string, templateName: string): Promise; //#endregion export { Template, createProject, listTemplates, templates }; //# sourceMappingURL=index.d.mts.map