import type { Switch as RNSwitch, View } from 'react-native'; import { type ISwitchProps } from '@cdx-ui/primitives'; export interface SwitchProps extends ISwitchProps { /** * Track and thumb size. * @default 'md' */ size?: 'sm' | 'md' | 'lg'; /** Additional Uniwind/Tailwind classes, merged after the switch's own styles. */ className?: string; /** Accessible label announced by screen readers. */ accessibilityLabel?: string; /** Called when the switch receives focus. */ onFocus?: () => void; /** Called when the switch loses focus. */ onBlur?: () => void; } export declare const Switch: import("react").ForwardRefExoticComponent>; //# sourceMappingURL=index.d.ts.map