/** * Defines what value is set to a checkbox-typed cell. * * @param {*} newValue The value to be set. * @param {number} row The row index. * @param {number} column The column index. * @returns {*} The new value to be set. */ type SetterContext = { getCellMeta: (row: number, col: number) => Record; }; /** * */ export declare function valueSetter(this: SetterContext, newValue: unknown, row: number, column: number): unknown; export {};