import React from 'react'; import type { ModalProps, DescriptionsProps, TabsProps } from 'antd'; import './index.less'; export declare const componentPrefix = "zhst-image"; export interface BigImageModalProps extends ModalProps { visible: boolean; descriptionConfig: { data: { title: string; children: Pick; }[]; }; tabsConfig: { data: Pick & { key: 'NORMAL' | 'COMPATER' | 'TRACK'; }; }; dataSource: any; imageData: any; relatedData: any; } declare const BigImageModal: React.FC; export default BigImageModal;