import type { COMPONENT_REGISTRY_TOKEN } from '@tramvai/tokens-common'; type Interface = typeof COMPONENT_REGISTRY_TOKEN; export declare class ComponentRegistry implements Interface { components: Record; constructor({ componentList }?: { componentList?: Record[]; }); add(name: string, component: any, group?: string): void; get(name: string, group?: string): any; getComponentParam(param: string, defaultValue: T, component: string, group: string): T; } export {}; //# sourceMappingURL=componentRegistry.d.ts.map