import type { Root } from 'mdast';
export type Snippet = {
    snippetFileLocation: string;
    content: string;
};
export declare function createSnippetTreeMap(snippets: Snippet[]): Promise<Record<string, Root>>;
