import { FC } from 'react'; export interface OnChainPopupSelectProps { columns: Array<{}>; id?: any; onChange?: (url: string) => {}; value?: any; height?: any; width: any; disabled?: boolean; userLink?: boolean; options?: any; fieldNames?: Object; noSearch?: boolean; title?: string; formate?: string; showButton?: boolean; params?: Object; isCheckbox?: boolean; maxSelect?: number; placeholder?: string; searchPlaceholder?: string; placeholderCode?: string; isUseRuleSort?: boolean; onClick?: (e: any) => void; onSubmit?: (row: any) => void; modalWidth: number; isBroadside?: boolean; isLibrary?: boolean; getUrlData: (data: any) => any; getItems?: () => void; getInstanceMenu?: () => any; getAttributeByTab?: () => any; popupContainer?: HTMLElement; } declare const OnChainPopupSelect: FC; export default OnChainPopupSelect;