import { ControlType, FieldBase, FieldBaseOptions } from './field-base'; export declare type TextboxType = 'text'; export interface TextBoxFieldOptions extends FieldBaseOptions { textboxType: TextboxType; } export declare class TextboxField extends FieldBase { readonly controlType: ControlType; textboxType: TextboxType; constructor(options: TextBoxFieldOptions); }