import { type ChangeEventHandler, type CSSProperties } from 'react'; import { type InputControlProps } from '../../shared/contracts'; import { type CssLength, type CssTime } from '../../../utils/css'; type CircleLineToggleStyle = CSSProperties & { '--circle-line-toggle-color'?: string; '--circle-line-toggle-duration'?: string; '--circle-line-toggle-size'?: string; }; type CircleLineToggleProps = Omit & { checked?: boolean; defaultChecked?: boolean; onCheckedChange?: (checked: boolean) => void; onChange?: ChangeEventHandler; className?: string; style?: CircleLineToggleStyle; color?: string; duration?: CssTime; size?: CssLength; }; declare const CircleLineToggle: ({ checked: controlledChecked, defaultChecked, onCheckedChange, onChange, className, style, color, duration, size, disabled, ref, "aria-label": ariaLabel, "aria-labelledby": ariaLabelledBy, ...inputProps }: CircleLineToggleProps) => import("react/jsx-runtime").JSX.Element; export { CircleLineToggle }; export type { CircleLineToggleProps, CircleLineToggleStyle };