import type { Plugin } from '../types/index.js'; export interface NestedDocsPluginConfig { collections?: string[]; parentFieldSlug?: string; breadcrumbsFieldSlug?: string; /** Drizzle DB client getter - if not provided, breadcrumbs will be empty */ getDb?: () => unknown; /** Label field to use for breadcrumb labels (defaults to 'title') */ labelField?: string; } export declare function nestedDocsPlugin(config?: NestedDocsPluginConfig): Plugin; //# sourceMappingURL=nested-docs.d.ts.map