import { ImageSourcePropType, ImageStyle, PressableProps, StyleProp, TextStyle, ViewStyle } from "react-native"; import React from "react"; export declare const AnimationValues: { BounceIn: number; BounceOut: number; VelocityIn: number; VelocityOut: number; BouncinessIn: number; BouncinessOut: number; }; export type BasePressableProps = Pick>; export interface BouncyCheckboxProps extends BasePressableProps { size?: number; text?: string; testID?: string; fillColor?: string; isChecked?: boolean; unFillColor?: string; disableText?: boolean; bounceEffect?: number; bounceFriction?: number; useNativeDriver?: boolean; bounceEffectIn?: number; bounceEffectOut?: number; bounceVelocityIn?: number; bounceVelocityOut?: number; bouncinessIn?: number; bouncinessOut?: number; ImageComponent?: any; TouchableComponent?: any; iconComponent?: React.ReactNode; textComponent?: React.ReactNode; iconStyle?: StyleProp; innerIconStyle?: StyleProp; style?: StyleProp; textStyle?: StyleProp; iconImageStyle?: StyleProp; textContainerStyle?: StyleProp; checkIconImageSource?: ImageSourcePropType; useBuiltInState?: boolean; onPress?: (checked: boolean) => void; onLongPress?: (checked: boolean) => void; } export interface BouncyCheckboxHandle { onCheckboxPress: () => void; onCheckboxLongPress: () => void; }