import { TreeSelectOption } from 'naive-ui'; export declare function transformToArrayTree(data: Record, parentKey?: string): TreeSelectOption[]; export declare function transformToTree(data: Record, parentKey?: string, arrayDict?: Record): { options: TreeSelectOption[]; arrayDict: Record; };