import { Field, Tuid } from '../../../entities'; import { VField } from "./vField"; import { FieldUI } from '../../formUI'; import { VForm, FieldInput } from '../vForm'; import { FieldRes } from '../vBand'; export declare class VTuidField extends VField { protected vForm: VForm; protected input: FieldInput; protected tuid: Tuid; constructor(vForm: VForm, field: Field, fieldUI: FieldUI, fieldRes: FieldRes); onClick: () => Promise; protected view: () => JSX.Element; }