/** Base metadata directory */ export declare const metaDataPath: string; /** * Components package metadata — one sub-directory per sd-* component. * Each component dir contains: docs.md, api.json, templates.json */ export declare const componentPath: string; /** Package-level docs for the components package (Installation, Localization, etc.) */ export declare const componentPackageDocsPath: string; /** * Styles package metadata — one sub-directory per style utility (e.g. sd-chip). * Each style dir contains: docs.md, classes.txt */ export declare const stylesPath: string; /** Package-level docs for the styles package (Installation, Usage, etc.) */ export declare const stylePackageDocsPath: string; /** Package-level docs for quickstart entrypoint */ export declare const quickstartPackageDocsPath: string; /** * Templates package metadata — one sub-directory per template (e.g. button, forms). * Each template dir contains: stories.ts, components.json */ export declare const templatesPackagePath: string; /** Tokens package metadata */ export declare const tokensPath: string; /** Icons package metadata */ export declare const iconsPath: string; /** Docs package source stories (MD/MDX) */ export declare const docsSourceStoriesPath: string; /** Docs package generated markdown metadata */ export declare const docsPackagePath: string; /** Package-level docs for the tokens package (Installation, Usage, etc.) */ export declare const tokenPackageDocsPath: string; /** Authored UX pattern guidance metadata */ export declare const uxGuidelinesPath: string; /** Root of all static AI-rule markdown files */ export declare const staticPath: string; /** Static AI rules for styles */ export declare const staticStylesPath: string; /** Static AI rules for templates */ export declare const templatesPath: string; export type Framework = 'vanilla';