import type { DesignSystemTheme } from "./theme.js"; import type { DesignSystemComponents } from "./types.js"; export interface DesignSystemDefinition { name?: string; components?: Partial; theme?: DesignSystemTheme; } export declare function defineDesignSystem(definition: Definition): Definition; //# sourceMappingURL=definition.d.ts.map