import { Switch as RNSwitch, type SwitchProps as RNSwitchProps } from 'react-native'; import { type IUseSwitchReturn } from '@cdx-ui/primitives'; export interface BaseSwitchProps extends Omit { switchState: IUseSwitchReturn; className?: string; size?: string | null; } /** * Native host for `Switch`. Renders `RNSwitch` with Uniwind className passthrough * derived from the resolved interaction state in `switchState`. * * All state/a11y/interaction machinery lives in the `useSwitch` hook; this file * is pure rendering (Standard 3: primitives must not carry styling machinery). */ export declare const BaseSwitch: import("react").ForwardRefExoticComponent>; //# sourceMappingURL=BaseSwitch.d.ts.map