import { Field, FieldOptions } from './Field.ts'; import { RegisterFormFiled, VueComponent } from './types.ts'; interface StringFieldOptions extends FieldOptions { value?: string; fieldType?: 'text' | 'password' | 'email' | 'password_confirmation' | 'number' | 'date' | 'time' | 'search' | 'url' | 'week' | 'month'; } export declare class StringField extends Field implements RegisterFormFiled { type: string; component: VueComponent; value?: string; fieldType: string; constructor(options: StringFieldOptions); } export {};