import React from "react"; import { View } from "react-native"; import { IconName } from "../Icon"; import { CellProps } from "./Cell"; export type SwitchColor = "textPrimary" | "danger" | "warning" | "textDisabled"; export type SwitchCellProps = { isActive: boolean; onChange: (isActive: boolean) => void; switchSize?: "small" | "normal"; disabled?: boolean; title: string; description?: string; iconName?: IconName; color?: SwitchColor; } & Omit; export declare const SwitchCell: React.ForwardRefExoticComponent<{ isActive: boolean; onChange: (isActive: boolean) => void; switchSize?: "small" | "normal"; disabled?: boolean; title: string; description?: string; iconName?: IconName; color?: SwitchColor; } & Omit & React.RefAttributes>;