import type React from "react"; import { Switch } from "react-native"; import { ListItem } from "@/components/list/ListItem"; interface Props { title: string; subtitle?: string; value: boolean; onValueChange: (value: boolean) => void; disabled?: boolean; } export const SettingsSwitchRow: React.FC = ({ title, subtitle, value, onValueChange, disabled, }) => ( );