/** * Tri-state checkbox values * @see https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Reference/Attributes/aria-checked */ export type KbqCheckedState = 'true' | 'false' | 'mixed';