import { RegistryAccess } from '../registry/registryAccess';
import { TreeContainer } from '../resolve/treeContainers';
/**
 * File system path to a source file of a metadata component.
 */
export type SourcePath = string;
export type TreeOptions = {
    tree: TreeContainer;
};
export type RegistryOptions = {
    registry: RegistryAccess;
};
export type OptionalTreeRegistryOptions = Partial<TreeOptions> & Partial<RegistryOptions>;
