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