// Type definitions for @dyna-grid/core v1.1.4 // Project: // Definitions by: zhangkun <> import { DyAbstractInputField, IInputField } from './dyAbstractInputField'; export interface ITextInputField extends IInputField { allowedCharPattern?: string; } export declare class DyInputTextField extends DyAbstractInputField { constructor(config?: ITextInputField, className?: string, inputType?: string); protected postConstruct(): void; setValue(value?: string | null, silent?: boolean): this; private preventDisallowedCharacters; }