import { type ComponentPropsWithoutRef } from 'react'; /** * ToggleSwitch component props. * Extends the standard HTML input checkbox element props. */ export type ToggleSwitchProps = ComponentPropsWithoutRef<'input'>;