import React from 'react'; import type { ComponentItemType, EngineApisType } from '@lingxiteam/types'; export interface MyDescriptionProps { visible?: boolean; dataSource?: any; labelWidth?: any; style?: React.CSSProperties | any; className?: any; columns: any[]; bordered?: boolean; colon?: boolean; colSpan?: number; labelAlign?: any; textAlign?: any; colServiceData?: any; lineBreak?: string; appId?: string; $$componentItem: ComponentItemType; getEngineApis: () => EngineApisType; layout?: 'horizontal' | 'vertical'; labelSize?: any; backgroundType?: any; } declare const Description: React.ForwardRefExoticComponent>; export default Description;