import React from 'react'; export interface AnalysisCustomDataModalProps { appId: string; pageId: string; getEngineApis: () => any; forwardRef: any; [key: string]: any; } export declare type OpenParamType = { templateDataObject?: any; onSuccess: (result: any[]) => { close: boolean; status: 'success' | 'fail'; message?: string; }; onFail?: (err: any, message?: string) => void; }; export interface AnalysisCustomDataModalHooks { open: (data: OpenParamType) => void; } declare const AnalysisCustomDataModal: React.ForwardRefExoticComponent & React.RefAttributes>; export default AnalysisCustomDataModal;