import { Color } from "@artsy/palette-tokens"; import { SwitchProps as RNSwitchProps } from "react-native"; type CustomSwitchProps = Omit; export interface SwitchProps extends CustomSwitchProps { /** * The circular thumb's color on the 'ON' switch. */ thumbColorActive?: Color; /** * The circular thumb's color on the 'OFF' switch. */ thumbColorInactive?: Color; /** * The background's color on the 'ON' switch. */ trackColorActive?: Color; /** * The background's color on the 'OFF' switch. */ trackColorInactive?: Color; } export declare const Switch: ({ value, thumbColorActive, thumbColorInactive, trackColorActive, trackColorInactive, disabled, ...restProps }: SwitchProps) => import("react/jsx-runtime").JSX.Element; export {};