import { ReactElement } from 'react'; import { TableSelectProps } from './_components/TableSelect'; import { OmitIndex } from '../../utils/type'; export type StoreTableSelectProps = { immediatelyRequest?: boolean; btnText?: string; type?: 'store' | 'shop'; onChange?: (value: RecordType[], addItems: RecordType[], delItems: RecordType[]) => void; children?: ReactElement; [key: string]: any; } & OmitIndex, 'onSearch' | 'onCancel' | 'rowKey' | 'onOk' | 'dataSource' | 'columns'>; declare function StoreTableSelect({ immediatelyRequest, type, btnText, title, value: valueProps, multiple, placeholder, validator, validatorTip, onChange, modalProps, tableProps, children, ...restProps }: StoreTableSelectProps): JSX.Element; declare namespace StoreTableSelect { var displayName: string; } export default StoreTableSelect;