import React from 'react'; import type { StyleProp, SwitchProps, ViewStyle } from 'react-native'; declare type SwitchListItemProps = React.PropsWithChildren & { labelComponent: JSX.Element; labelPosition?: 'left' | 'right'; style?: StyleProp; switchStyle?: StyleProp; value: boolean; onValueChange: () => void; }>; export declare const SwitchListItemBase: ({ children, testID, labelComponent, labelPosition, style, switchStyle, value, onValueChange, ...rest }: SwitchListItemProps) => JSX.Element; export declare const SwitchListItem: React.MemoExoticComponent<({ children, testID, labelComponent, labelPosition, style, switchStyle, value, onValueChange, ...rest }: SwitchListItemProps) => JSX.Element>; export {};