/** * Returns an exception to be thrown when attempting to change a select's `multiple` option * after initialization. * @docs-private */ export declare function getKbqSelectDynamicMultipleError(): Error; /** * Returns an exception to be thrown when attempting to assign a non-array value to a select * in `multiple` mode. Note that `undefined` and `null` are still valid values to allow for * resetting the value. * @docs-private */ export declare function getKbqSelectNonArrayValueError(): Error; /** * Returns an exception to be thrown when assigning a non-function value to the comparator * used to determine if a value corresponds to an option. Note that whether the function * actually takes two values and returns a boolean is not checked. */ export declare function getKbqSelectNonFunctionValueError(): Error;