// Type definitions for @dyna-grid/core v1.1.4 // Project: // Definitions by: zhangkun <> import { DyCheckbox } from './dyCheckbox'; import { IInputField } from './dyAbstractInputField'; export declare class DyToggleButton extends DyCheckbox { constructor(config?: IInputField); setValue(value: boolean, silent?: boolean): this; }