import { VEntity } from '../CVEntity'; import { Tuid } from '../../entities'; import { CTuid, TuidUI } from './cTuid'; export declare class VTuidSelect extends VEntity> { protected mainRowContent: (row: any) => JSX.Element; protected divRowContent: (row: any) => JSX.Element; open(param?: any): Promise; private showMain; private showDiv; protected mainView: () => JSX.Element; onSearchMain: (key: string) => Promise; renderMainRow: (item: any, index: number) => JSX.Element; clickMainRow: (item: any) => Promise; protected divView: (param: any) => JSX.Element; renderDivRow: (item: any, index: number) => JSX.Element; clickDivRow: (item: any) => void; }