import { ActionComponent, ComponentData } from "@feige0629/react-store"; export type LayoutsType = { img: string; package: { version: string; name: string; }; collapsed: boolean; show: boolean; pid: number | string; title: string; lock: boolean; id: string; cid: string; key: string; children?: LayoutsType[]; }; export declare const formateTreeData: (data: LayoutsType[], currentComponentId: string, current: boolean | undefined, componentList: Record | undefined) => LayoutsType[]; export declare const getComponent: (item: ActionComponent, componentList: Record | undefined) => ComponentData | undefined;