import React from 'react'; import type { ModalProps, ButtonProps } from 'antd'; import type { ProTableProps } from '@ant-design/pro-components'; interface SelectTableKeyPorps { /** 例如 id、vin 默认id */ rowKey?: string; value?: React.Key[]; onChange?: (s?: React.Key[]) => void; /** 列表组件 */ children?: React.ReactNode; /** 禁止使用 */ disabled?: boolean; /** 弹窗的props */ modalProps?: Omit; /** proTable的参数 */ proTableProps?: Omit, 'rowKey|rowSelection'>; /** input参数 */ buttonProps?: Omit; buttonText?: string; /** 不在列表中显示的Colums */ filterColums?: string[]; disabledColums?: string[]; defaultSearchParams?: Object; } declare function SelectTableKey(props: SelectTableKeyPorps): JSX.Element; export default SelectTableKey;