import React from 'react'; import { IEditorProps } from './typing'; export type IStatementProps = IEditorProps & { /** 是否是当前激活的语句 */ active: boolean; mode?: 'tabs' | 'flow'; enableImmediateQuery: boolean; graphId: string; /** 时间戳 */ timestamp?: number; }; declare const _default: React.NamedExoticComponent; export default _default;