import { SnippetMeta } from '@/utils/transform';
export default class ComponentManager {
    snippets: Map<string, any>;
    setSnippets: (snippets: SnippetMeta[]) => void;
    getSnippetById: (id: string) => any;
}
