export declare const jsonTableColumns: { title: string; key: string; dataIndex: string; span: number; }[]; export declare const jsonXmlOptions: { value: string; payload: { title: string; }; }[]; export declare const DEFAULT_TYPE = "data"; export declare const customOverlay: { label: string; }[]; export declare const jsonXmlTypeOptions: { label: string; value: string; }[]; export type IType = 'string' | 'interger' | 'boolean' | 'array' | 'object' | 'number' | 'null' | 'any' | 'other'; export interface IJsonXmlItem { name?: string; type?: IType; value?: any; mock?: string; chineseName?: string; description?: string; children?: IJsonXmlItem[]; [key: string]: any; } export declare const jsonXmlProps: { readonly value: import("ll-plus/es/utils").EpPropFinalized void, boolean>; readonly type: import("ll-plus/es/utils").EpPropFinalized, unknown, unknown, "json", boolean>; }; export declare const jsonXmlEmits: { 'update:value': (value: any) => boolean; }; export declare const jsonXmlTableProps: { readonly dataSource: import("ll-plus/es/utils").EpPropFinalized, unknown, unknown, () => any[], boolean>; readonly type: { readonly type: import("vue").PropType, unknown, unknown>>; readonly required: false; readonly validator: (val: unknown) => boolean; __epPropKey: true; }; }; export declare const jsonXmlTableEmits: { change: (value: any) => boolean; }; export declare const jsonXmlTableRowProps: { readonly data: import("ll-plus/es/utils").EpPropFinalized, unknown, unknown, () => void, boolean>; readonly list: import("ll-plus/es/utils").EpPropFinalized, unknown, unknown, () => any[], boolean>; readonly parentData: import("ll-plus/es/utils").EpPropFinalized, unknown, unknown, () => any, boolean>; readonly layer: import("ll-plus/es/utils").EpPropFinalized; readonly treeKey: import("ll-plus/es/utils").EpPropFinalized; }; export declare const jsonXmlTableRowEmits: { change: (val: IJsonXmlItem) => boolean; };