import type { ViewStyle } from 'react-native' import type { InteractionState, StyleResolverFunction } from '../resolver' export type SwitchState = InteractionState & { isActive?: boolean, } export type SwitchContainerStyle = ViewStyle export type SwitchTrackStyle = ViewStyle export type SwitchThumbStyle = ViewStyle export type SwitchThemeResolvers = { container: StyleResolverFunction, track: StyleResolverFunction, thumb: StyleResolverFunction, }