import type { EditInputFC, SetDefaultColumnProps } from '@lingxiteam/editor-types'; import './index.less'; export interface TableColumnSimpleProps { title: string; key: string; dataIndex: string; hiddenRule?: boolean | string; type?: 'dynamicCol'; index?: number; [key: string]: any; } declare const SetDefaultColumn: EditInputFC; export default SetDefaultColumn;