import type { ReactElement } from 'react'; import type { StyleProp, ViewStyle } from 'react-native'; export interface SwitchProps { /** * Control whether the switch is checked */ checked?: boolean; /** * Whether the switch is disabled */ disabled?: boolean; /** * Event handler. */ onPress?: () => void; /** * Additional style. */ style?: StyleProp; /** * Testing id of the component. */ testID?: string; } declare const _default: (({ disabled, checked, onPress, style, testID, }: SwitchProps) => ReactElement) & { Selector: ({ options, value, onPress, style, testID, }: import("./SelectorSwitch").SelectorSwitchProps) => ReactElement; }; export default _default;