import type { DefinedComponent, ComponentGroup, Library } from './types.js'; export interface CreateLibraryConfig { components: DefinedComponent[]; root?: string; groups?: ComponentGroup[]; } export declare function createLibrary(config: CreateLibraryConfig): Library;