import React from 'react'; import type { ColumnType } from 'antd/es/table'; type ColumnItemType = { dataIndex: string; title: string; render?: (val: any, record: any, index: number) => React.ReactNode; width?: number; show?: boolean; }; declare const _default: (type: string) => [ColumnType[], string[], boolean]; export default _default;