import type { StudioDesignSystemArtifact, StudioDesignSystemArtifactCaptureRequest, StudioDesignSystemArtifactReviewPatch } from "./types.js"; export declare function artifactsStoreDir(projectRoot: string): string; export declare function listDesignSystemArtifacts(projectRoot: string): Promise; export declare function getDesignSystemArtifact(projectRoot: string, id: string): Promise; export declare function captureDesignSystemArtifact(projectRoot: string, input: StudioDesignSystemArtifactCaptureRequest): Promise; export declare function updateDesignSystemArtifactSectionReview(projectRoot: string, artifactId: string, sectionId: string, patch: StudioDesignSystemArtifactReviewPatch): Promise; export declare function writeDesignSystemArtifact(projectRoot: string, artifact: StudioDesignSystemArtifact): Promise;