import React from 'react'; import { Nullable } from '@orca-fe/tools'; import { ComponentMapping, ScreenComponentDataType } from '@orca-fe/deye-typings'; import './DefaultLayoutPage.less'; /** * 获取应该被填充为 null 的节点 * @param data 组件树 * @param componentMapping 组件映射表 * @param checkedPath 选中的节点路径 */ export declare function getNodeShouldFillNull(data: Nullable[], componentMapping: ComponentMapping, checkedPath: string[]): boolean[]; export interface DefaultLayoutPageProps extends React.HTMLAttributes { pageId?: string; onSaveAsTemplate?: (id: string) => void; zoomMode?: boolean; } declare const DefaultLayoutPage: (props: DefaultLayoutPageProps) => JSX.Element; export default DefaultLayoutPage;