import React from "react";
import { PropertyType, SchemaType } from "zeroetp-api-sdk";
import { TableProps } from "../Table/Table.types";
export declare type DetailProps = {
    schema: SchemaType;
    columnProperties: PropertyType[];
    item: any;
    showRefDetail?: boolean;
    tableProps?: Omit<TableProps, "logicform" | "result" | "setLogicform" | "reload" | "onChange">;
};
declare const Detail: React.FC<DetailProps>;
export default Detail;
