import { default as React } from 'react'; export interface OnChainTableSelectionProps { value?: string; title: string; visible: boolean; columns: any; enter?: boolean; params?: any; formate?: any; isCheckbox?: boolean; width?: number; isBroadside?: boolean; height?: number; noSearch?: boolean; isSelect?: boolean; allCategories?: boolean; itemCode?: string; isDownload?: boolean; placeholder?: string; placeholderCode?: string; searchChange?: (e: any) => void; isUseRuleSort?: boolean; isBuiltInSort?: boolean; notIdList?: any; tableColumns?: any; onCancel: () => void; maxSelect?: number; convertFun?: any; isLibrary?: boolean; getInstanceMenu?: () => any; getAttributeByTab?: () => any; onChange?: (e: any) => void; handleSubmit?: (e: any, v: any) => void; onInit?: (data: any) => void; getItems?: () => void; getUrlData: (data: any) => object; } export interface OnChainBorrowRefProps { getLoading: (e: any) => void; backfill: (e: any) => void; } declare const OnChainTableSelection: React.FC; export default OnChainTableSelection;