import { SDataArray } from 's-array'; import { DataSignal } from 's-js'; /** * One-way binds the given data-signal array to react to UI changes in the given HTML element (note the currying). */ export declare function sortableBindSarray(sArray: SDataArray, sortableOptions?: { [name: string]: any; }): (element: HTMLElement) => void; /** * Two-way binds the given `number` data signal with the given `` element (note the currying). */ export declare function bindNumber(signal: DataSignal): (element: HTMLInputElement) => void; /** * Two-way binds the given `string` data signal with the given `` element (note the currying). */ export declare function bindString(signal: DataSignal): (element: HTMLInputElement | HTMLSelectElement) => void; /** * Two-way binds the given data signal with the given `input` element (note the currying): The element is checked if * and only if the data signal has the given “on”-value. */ export declare function bindToOnValue(signal: DataSignal, onValue: T): (element: HTMLInputElement) => void; /** * Two-way binds the given data signal with the given 'multiple' `