import type { SkillRenderTarget } from "./types.js"; export declare const WORKFLOW_STATE_FILES: string[]; export declare function initGeneratedArtifacts({ root, advisory, bootstrapTargetFile, runtimeTargets, }: { root: string; advisory: boolean; bootstrapTargetFile?: string; runtimeTargets?: SkillRenderTarget[]; }): Promise; export declare function existingInitArtifacts(root: string, artifacts: string[]): Promise; export declare function backupExistingWorkspaceFiles({ root, relativePaths, }: { root: string; relativePaths: string[]; }): Promise; export declare function backupExistingWorkflowFiles({ root, fileNames, }: { root: string; fileNames: string[]; }): Promise;