/// import { Animated } from 'react-native'; import { TailwindFn } from 'twrnc'; import { Style } from 'twrnc/dist/esm/types'; declare type Props = { tw: TailwindFn; onColor?: string; offColor?: string; label?: string; style?: object; isOn?: boolean; labelStyle?: Style; innerStyle?: Style; onToggle: () => void; animatedValue?: Animated.Value; }; declare const ToggleButton: ({ tw, onColor, offColor, label, style, isOn, labelStyle, innerStyle, onToggle, }: Props) => JSX.Element; export default ToggleButton;