import { Page } from '@venuecms/sdk';

type PageWithParent = Page & {
    parentId?: string;
};
type PageWithParentAndChildren = PageWithParent & {
    children: PageWithParentAndChildren[];
};
declare const buildTree: (nodes: Array<PageWithParent>, parentId?: string) => Array<PageWithParentAndChildren>;

export { type PageWithParent, type PageWithParentAndChildren, buildTree };
