import type { SelectButtonPrimitive, SelectButtonValue } from './types.js'; export type SelectButtonValueResult = { changed: false; } | { changed: true; value: SelectButtonValue; }; export declare function computeNextSelectButtonValue(current: SelectButtonValue, optionValue: SelectButtonPrimitive, multiple: boolean, allowEmpty: boolean): SelectButtonValueResult; //# sourceMappingURL=select-button-value.d.ts.map