import React from "react";
import type { PropertyType, SchemaType } from "zeroetp-api-sdk";
export declare type ZEDescriptionProps = {
    schema: SchemaType;
    columnProperties: PropertyType[];
    item: any;
    bordered?: boolean;
    title?: string | React.ReactNode;
    extra?: React.ReactNode;
};
