import React from 'react'; import type { ParamsType, ProTableProps } from '@ant-design/pro-components'; import { AnyObject } from 'antd/es/_util/type'; export interface TimeTemplateTableProps extends ProTableProps { onItemBlur?: (value?: number | string, id?: any, record?: any) => void; } declare const TimeTemplateTable: (props: TimeTemplateTableProps) => React.JSX.Element; export default TimeTemplateTable;