import React from 'react'; import { TouchableOpacityProps as RNTouchableOpacityProps, StyleProp, ViewStyle, Animated } from 'react-native'; import { ContainerModifiers } from '../../commons/new'; export declare type TouchableOpacityProps = Omit & ContainerModifiers & { /** * background color for TouchableOpacity */ backgroundColor?: string; /** * throttle time in MS for onPress callback */ throttleTime?: number; /** * throttle options {leading, trailing} */ throttleOptions?: { leading: boolean; trailing: boolean; }; /** * Apply background color on TouchableOpacity when active (press is on) */ activeBackgroundColor?: string; /** * Should use a more native touchable opacity component */ useNative?: boolean; /** * Custom value of any type to pass on to TouchableOpacity and receive back in onPress callback */ customValue?: any; ref?: any; style?: StyleProp | Animated.AnimatedProps>; }; declare const _default: React.ComponentClass & Partial> & Partial> & Partial> & Partial> & Partial> & Partial> & Partial> & { /** * background color for TouchableOpacity */ backgroundColor?: string | undefined; /** * throttle time in MS for onPress callback */ throttleTime?: number | undefined; /** * throttle options {leading, trailing} */ throttleOptions?: { leading: boolean; trailing: boolean; } | undefined; /** * Apply background color on TouchableOpacity when active (press is on) */ activeBackgroundColor?: string | undefined; /** * Should use a more native touchable opacity component */ useNative?: boolean | undefined; /** * Custom value of any type to pass on to TouchableOpacity and receive back in onPress callback */ customValue?: any; ref?: any; style?: false | ViewStyle | import("react-native").RegisteredStyle | import("react-native").RecursiveArray | null | undefined> | { backfaceVisibility?: Animated.WithAnimatedValue<"visible" | "hidden" | undefined> | undefined; backgroundColor?: Animated.WithAnimatedValue | undefined; borderBottomColor?: Animated.WithAnimatedValue | undefined; borderBottomEndRadius?: Animated.WithAnimatedValue | undefined; borderBottomLeftRadius?: Animated.WithAnimatedValue | undefined; borderBottomRightRadius?: Animated.WithAnimatedValue | undefined; borderBottomStartRadius?: Animated.WithAnimatedValue | undefined; borderBottomWidth?: Animated.WithAnimatedValue | undefined; borderColor?: Animated.WithAnimatedValue | undefined; borderEndColor?: Animated.WithAnimatedValue | undefined; borderLeftColor?: Animated.WithAnimatedValue | undefined; borderLeftWidth?: Animated.WithAnimatedValue | undefined; borderRadius?: Animated.WithAnimatedValue | undefined; borderRightColor?: Animated.WithAnimatedValue | undefined; borderRightWidth?: Animated.WithAnimatedValue | undefined; borderStartColor?: Animated.WithAnimatedValue | undefined; borderStyle?: Animated.WithAnimatedValue<"solid" | "dotted" | "dashed" | undefined> | undefined; borderTopColor?: Animated.WithAnimatedValue | undefined; borderTopEndRadius?: Animated.WithAnimatedValue | undefined; borderTopLeftRadius?: Animated.WithAnimatedValue | undefined; borderTopRightRadius?: Animated.WithAnimatedValue | undefined; borderTopStartRadius?: Animated.WithAnimatedValue | undefined; borderTopWidth?: Animated.WithAnimatedValue | undefined; borderWidth?: Animated.WithAnimatedValue | undefined; opacity?: Animated.WithAnimatedValue | undefined; testID?: Animated.WithAnimatedValue | undefined; elevation?: Animated.WithAnimatedValue | undefined; alignContent?: Animated.WithAnimatedValue<"center" | "flex-start" | "flex-end" | "stretch" | "space-between" | "space-around" | undefined> | undefined; alignItems?: Animated.WithAnimatedValue<"center" | "flex-start" | "flex-end" | "stretch" | "baseline" | undefined> | undefined; alignSelf?: Animated.WithAnimatedValue<"auto" | "center" | "flex-start" | "flex-end" | "stretch" | "baseline" | undefined> | undefined; aspectRatio?: Animated.WithAnimatedValue | undefined; borderEndWidth?: Animated.WithAnimatedValue | undefined; borderStartWidth?: Animated.WithAnimatedValue | undefined; bottom?: Animated.WithAnimatedValue | undefined; display?: Animated.WithAnimatedValue<"none" | "flex" | undefined> | undefined; end?: Animated.WithAnimatedValue | undefined; flex?: Animated.WithAnimatedValue | undefined; flexBasis?: Animated.WithAnimatedValue | undefined; flexDirection?: Animated.WithAnimatedValue<"row" | "column" | "row-reverse" | "column-reverse" | undefined> | undefined; flexGrow?: Animated.WithAnimatedValue | undefined; flexShrink?: Animated.WithAnimatedValue | undefined; flexWrap?: Animated.WithAnimatedValue<"wrap" | "nowrap" | "wrap-reverse" | undefined> | undefined; height?: Animated.WithAnimatedValue | undefined; justifyContent?: Animated.WithAnimatedValue<"center" | "flex-start" | "flex-end" | "space-between" | "space-around" | "space-evenly" | undefined> | undefined; left?: Animated.WithAnimatedValue | undefined; margin?: Animated.WithAnimatedValue | undefined; marginBottom?: Animated.WithAnimatedValue | undefined; marginEnd?: Animated.WithAnimatedValue | undefined; marginHorizontal?: Animated.WithAnimatedValue | undefined; marginLeft?: Animated.WithAnimatedValue | undefined; marginRight?: Animated.WithAnimatedValue | undefined; marginStart?: Animated.WithAnimatedValue | undefined; marginTop?: Animated.WithAnimatedValue | undefined; marginVertical?: Animated.WithAnimatedValue | undefined; maxHeight?: Animated.WithAnimatedValue | undefined; maxWidth?: Animated.WithAnimatedValue | undefined; minHeight?: Animated.WithAnimatedValue | undefined; minWidth?: Animated.WithAnimatedValue | undefined; overflow?: Animated.WithAnimatedValue<"visible" | "hidden" | "scroll" | undefined> | undefined; padding?: Animated.WithAnimatedValue | undefined; paddingBottom?: Animated.WithAnimatedValue | undefined; paddingEnd?: Animated.WithAnimatedValue | undefined; paddingHorizontal?: Animated.WithAnimatedValue | undefined; paddingLeft?: Animated.WithAnimatedValue | undefined; paddingRight?: Animated.WithAnimatedValue | undefined; paddingStart?: Animated.WithAnimatedValue | undefined; paddingTop?: Animated.WithAnimatedValue | undefined; paddingVertical?: Animated.WithAnimatedValue | undefined; position?: Animated.WithAnimatedValue<"absolute" | "relative" | undefined> | undefined; right?: Animated.WithAnimatedValue | undefined; start?: Animated.WithAnimatedValue | undefined; top?: Animated.WithAnimatedValue | undefined; width?: Animated.WithAnimatedValue | undefined; zIndex?: Animated.WithAnimatedValue | undefined; direction?: Animated.WithAnimatedValue<"ltr" | "rtl" | "inherit" | undefined> | undefined; shadowColor?: Animated.WithAnimatedValue | undefined; shadowOffset?: Animated.WithAnimatedValue<{ width: number; height: number; } | undefined> | undefined; shadowOpacity?: Animated.WithAnimatedValue | undefined; shadowRadius?: Animated.WithAnimatedValue | undefined; transform?: Animated.WithAnimatedValue<(import("react-native").PerpectiveTransform | import("react-native").RotateTransform | import("react-native").RotateXTransform | import("react-native").RotateYTransform | import("react-native").RotateZTransform | import("react-native").ScaleTransform | import("react-native").ScaleXTransform | import("react-native").ScaleYTransform | import("react-native").TranslateXTransform | import("react-native").TranslateYTransform | import("react-native").SkewXTransform | import("react-native").SkewYTransform)[] | undefined> | undefined; transformMatrix?: Animated.WithAnimatedValue | undefined; rotation?: Animated.WithAnimatedValue | undefined; scaleX?: Animated.WithAnimatedValue | undefined; scaleY?: Animated.WithAnimatedValue | undefined; translateX?: Animated.WithAnimatedValue | undefined; translateY?: Animated.WithAnimatedValue | undefined; } | { toString: Animated.WithAnimatedValue<((radix?: number | undefined) => string) & (() => string)>; toFixed: Animated.WithAnimatedValue<(fractionDigits?: number | undefined) => string>; toExponential: Animated.WithAnimatedValue<(fractionDigits?: number | undefined) => string>; toPrecision: Animated.WithAnimatedValue<(precision?: number | undefined) => string>; valueOf: Animated.WithAnimatedValue<(() => number) & (() => Object)>; toLocaleString: Animated.WithAnimatedValue<((locales?: string | string[] | undefined, options?: Intl.NumberFormatOptions | undefined) => string) & (() => string)>; __registeredStyleBrand: Animated.WithAnimatedValue; } | { [x: number]: Animated.WithAnimatedValue | import("react-native").RecursiveArray | null | undefined> | readonly (false | ViewStyle | import("react-native").RegisteredStyle | null | undefined)[] | null | undefined>; length: Animated.WithAnimatedValue; toString: Animated.WithAnimatedValue<() => string>; toLocaleString: Animated.WithAnimatedValue<() => string>; pop: Animated.WithAnimatedValue<() => false | ViewStyle | import("react-native").RegisteredStyle | import("react-native").RecursiveArray | null | undefined> | readonly (false | ViewStyle | import("react-native").RegisteredStyle | null | undefined)[] | null | undefined>; push: Animated.WithAnimatedValue<(...items: (false | ViewStyle | import("react-native").RegisteredStyle | import("react-native").RecursiveArray | null | undefined> | readonly (false | ViewStyle | import("react-native").RegisteredStyle | null | undefined)[] | null | undefined)[]) => number>; concat: Animated.WithAnimatedValue<{ (...items: ConcatArray | import("react-native").RecursiveArray | null | undefined> | readonly (false | ViewStyle | import("react-native").RegisteredStyle | null | undefined)[] | null | undefined>[]): (false | ViewStyle | import("react-native").RegisteredStyle | import("react-native").RecursiveArray | null | undefined> | readonly (false | ViewStyle | import("react-native").RegisteredStyle | null | undefined)[] | null | undefined)[]; (...items: (false | ViewStyle | import("react-native").RegisteredStyle | import("react-native").RecursiveArray | null | undefined> | readonly (false | ViewStyle | import("react-native").RegisteredStyle | null | undefined)[] | ConcatArray | import("react-native").RecursiveArray | null | undefined> | readonly (false | ViewStyle | import("react-native").RegisteredStyle | null | undefined)[] | null | undefined> | null | undefined)[]): (false | ViewStyle | import("react-native").RegisteredStyle | import("react-native").RecursiveArray | null | undefined> | readonly (false | ViewStyle | import("react-native").RegisteredStyle | null | undefined)[] | null | undefined)[]; }>; join: Animated.WithAnimatedValue<(separator?: string | undefined) => string>; reverse: Animated.WithAnimatedValue<() => (false | ViewStyle | import("react-native").RegisteredStyle | import("react-native").RecursiveArray | null | undefined> | readonly (false | ViewStyle | import("react-native").RegisteredStyle | null | undefined)[] | null | undefined)[]>; shift: Animated.WithAnimatedValue<() => false | ViewStyle | import("react-native").RegisteredStyle | import("react-native").RecursiveArray | null | undefined> | readonly (false | ViewStyle | import("react-native").RegisteredStyle | null | undefined)[] | null | undefined>; slice: Animated.WithAnimatedValue<(start?: number | undefined, end?: number | undefined) => (false | ViewStyle | import("react-native").RegisteredStyle | import("react-native").RecursiveArray | null | undefined> | readonly (false | ViewStyle | import("react-native").RegisteredStyle | null | undefined)[] | null | undefined)[]>; sort: Animated.WithAnimatedValue<(compareFn?: ((a: false | ViewStyle | import("react-native").RegisteredStyle | import("react-native").RecursiveArray | null | undefined> | readonly (false | ViewStyle | import("react-native").RegisteredStyle | null | undefined)[] | null | undefined, b: false | ViewStyle | import("react-native").RegisteredStyle | import("react-native").RecursiveArray | null | undefined> | readonly (false | ViewStyle | import("react-native").RegisteredStyle | null | undefined)[] | null | undefined) => number) | undefined) => import("react-native").RecursiveArray | null | undefined>>; splice: Animated.WithAnimatedValue<{ (start: number, deleteCount?: number | undefined): (false | ViewStyle | import("react-native").RegisteredStyle | import("react-native").RecursiveArray | null | undefined> | readonly (false | ViewStyle | import("react-native").RegisteredStyle | null | undefined)[] | null | undefined)[]; (start: number, deleteCount: number, ...items: (false | ViewStyle | import("react-native").RegisteredStyle | import("react-native").RecursiveArray | null | undefined> | readonly (false | ViewStyle | import("react-native").RegisteredStyle | null | undefined)[] | null | undefined)[]): (false | ViewStyle | import("react-native").RegisteredStyle | import("react-native").RecursiveArray | null | undefined> | readonly (false | ViewStyle | import("react-native").RegisteredStyle | null | undefined)[] | null | undefined)[]; }>; unshift: Animated.WithAnimatedValue<(...items: (false | ViewStyle | import("react-native").RegisteredStyle | import("react-native").RecursiveArray | null | undefined> | readonly (false | ViewStyle | import("react-native").RegisteredStyle | null | undefined)[] | null | undefined)[]) => number>; indexOf: Animated.WithAnimatedValue<(searchElement: false | ViewStyle | import("react-native").RegisteredStyle | import("react-native").RecursiveArray | null | undefined> | readonly (false | ViewStyle | import("react-native").RegisteredStyle | null | undefined)[] | null | undefined, fromIndex?: number | undefined) => number>; lastIndexOf: Animated.WithAnimatedValue<(searchElement: false | ViewStyle | import("react-native").RegisteredStyle | import("react-native").RecursiveArray | null | undefined> | readonly (false | ViewStyle | import("react-native").RegisteredStyle | null | undefined)[] | null | undefined, fromIndex?: number | undefined) => number>; every: Animated.WithAnimatedValue<(callbackfn: (value: false | ViewStyle | import("react-native").RegisteredStyle | import("react-native").RecursiveArray | null | undefined> | readonly (false | ViewStyle | import("react-native").RegisteredStyle | null | undefined)[] | null | undefined, index: number, array: (false | ViewStyle | import("react-native").RegisteredStyle | import("react-native").RecursiveArray | null | undefined> | readonly (false | ViewStyle | import("react-native").RegisteredStyle | null | undefined)[] | null | undefined)[]) => unknown, thisArg?: any) => boolean>; some: Animated.WithAnimatedValue<(callbackfn: (value: false | ViewStyle | import("react-native").RegisteredStyle | import("react-native").RecursiveArray | null | undefined> | readonly (false | ViewStyle | import("react-native").RegisteredStyle | null | undefined)[] | null | undefined, index: number, array: (false | ViewStyle | import("react-native").RegisteredStyle | import("react-native").RecursiveArray | null | undefined> | readonly (false | ViewStyle | import("react-native").RegisteredStyle | null | undefined)[] | null | undefined)[]) => unknown, thisArg?: any) => boolean>; forEach: Animated.WithAnimatedValue<(callbackfn: (value: false | ViewStyle | import("react-native").RegisteredStyle | import("react-native").RecursiveArray | null | undefined> | readonly (false | ViewStyle | import("react-native").RegisteredStyle | null | undefined)[] | null | undefined, index: number, array: (false | ViewStyle | import("react-native").RegisteredStyle | import("react-native").RecursiveArray | null | undefined> | readonly (false | ViewStyle | import("react-native").RegisteredStyle | null | undefined)[] | null | undefined)[]) => void, thisArg?: any) => void>; map: Animated.WithAnimatedValue<((callbackfn: (value: false | ViewStyle | import("react-native").RegisteredStyle | import("react-native").RecursiveArray | null | undefined> | readonly (false | ViewStyle | import("react-native").RegisteredStyle | null | undefined)[] | null | undefined, index: number, array: (false | ViewStyle | import("react-native").RegisteredStyle | import("react-native").RecursiveArray | null | undefined> | readonly (false | ViewStyle | import("react-native").RegisteredStyle | null | undefined)[] | null | undefined)[]) => U, thisArg?: any) => U[])>; filter: Animated.WithAnimatedValue<{ | import("react-native").RecursiveArray | null | undefined> | readonly (false | ViewStyle | import("react-native").RegisteredStyle | null | undefined)[] | null | undefined>(callbackfn: (value: false | ViewStyle | import("react-native").RegisteredStyle | import("react-native").RecursiveArray | null | undefined> | readonly (false | ViewStyle | import("react-native").RegisteredStyle | null | undefined)[] | null | undefined, index: number, array: (false | ViewStyle | import("react-native").RegisteredStyle | import("react-native").RecursiveArray | null | undefined> | readonly (false | ViewStyle | import("react-native").RegisteredStyle | null | undefined)[] | null | undefined)[]) => value is S, thisArg?: any): S[]; (callbackfn: (value: false | ViewStyle | import("react-native").RegisteredStyle | import("react-native").RecursiveArray | null | undefined> | readonly (false | ViewStyle | import("react-native").RegisteredStyle | null | undefined)[] | null | undefined, index: number, array: (false | ViewStyle | import("react-native").RegisteredStyle | import("react-native").RecursiveArray | null | undefined> | readonly (false | ViewStyle | import("react-native").RegisteredStyle | null | undefined)[] | null | undefined)[]) => unknown, thisArg?: any): (false | ViewStyle | import("react-native").RegisteredStyle | import("react-native").RecursiveArray | null | undefined> | readonly (false | ViewStyle | import("react-native").RegisteredStyle | null | undefined)[] | null | undefined)[]; }>; reduce: Animated.WithAnimatedValue<{ (callbackfn: (previousValue: false | ViewStyle | import("react-native").RegisteredStyle | import("react-native").RecursiveArray | null | undefined> | readonly (false | ViewStyle | import("react-native").RegisteredStyle | null | undefined)[] | null | undefined, currentValue: false | ViewStyle | import("react-native").RegisteredStyle | import("react-native").RecursiveArray | null | undefined> | readonly (false | ViewStyle | import("react-native").RegisteredStyle | null | undefined)[] | null | undefined, currentIndex: number, array: (false | ViewStyle | import("react-native").RegisteredStyle | import("react-native").RecursiveArray | null | undefined> | readonly (false | ViewStyle | import("react-native").RegisteredStyle | null | undefined)[] | null | undefined)[]) => false | ViewStyle | import("react-native").RegisteredStyle | import("react-native").RecursiveArray | null | undefined> | readonly (false | ViewStyle | import("react-native").RegisteredStyle | null | undefined)[] | null | undefined): false | ViewStyle | import("react-native").RegisteredStyle | import("react-native").RecursiveArray | null | undefined> | readonly (false | ViewStyle | import("react-native").RegisteredStyle | null | undefined)[] | null | undefined; (callbackfn: (previousValue: false | ViewStyle | import("react-native").RegisteredStyle | import("react-native").RecursiveArray | null | undefined> | readonly (false | ViewStyle | import("react-native").RegisteredStyle | null | undefined)[] | null | undefined, currentValue: false | ViewStyle | import("react-native").RegisteredStyle | import("react-native").RecursiveArray | null | undefined> | readonly (false | ViewStyle | import("react-native").RegisteredStyle | null | undefined)[] | null | undefined, currentIndex: number, array: (false | ViewStyle | import("react-native").RegisteredStyle | import("react-native").RecursiveArray | null | undefined> | readonly (false | ViewStyle | import("react-native").RegisteredStyle | null | undefined)[] | null | undefined)[]) => false | ViewStyle | import("react-native").RegisteredStyle | import("react-native").RecursiveArray | null | undefined> | readonly (false | ViewStyle | import("react-native").RegisteredStyle | null | undefined)[] | null | undefined, initialValue: false | ViewStyle | import("react-native").RegisteredStyle | import("react-native").RecursiveArray | null | undefined> | readonly (false | ViewStyle | import("react-native").RegisteredStyle | null | undefined)[] | null | undefined): false | ViewStyle | import("react-native").RegisteredStyle | import("react-native").RecursiveArray | null | undefined> | readonly (false | ViewStyle | import("react-native").RegisteredStyle | null | undefined)[] | null | undefined; (callbackfn: (previousValue: U_1, currentValue: false | ViewStyle | import("react-native").RegisteredStyle | import("react-native").RecursiveArray | null | undefined> | readonly (false | ViewStyle | import("react-native").RegisteredStyle | null | undefined)[] | null | undefined, currentIndex: number, array: (false | ViewStyle | import("react-native").RegisteredStyle | import("react-native").RecursiveArray | null | undefined> | readonly (false | ViewStyle | import("react-native").RegisteredStyle | null | undefined)[] | null | undefined)[]) => U_1, initialValue: U_1): U_1; }>; reduceRight: Animated.WithAnimatedValue<{ (callbackfn: (previousValue: false | ViewStyle | import("react-native").RegisteredStyle | import("react-native").RecursiveArray | null | undefined> | readonly (false | ViewStyle | import("react-native").RegisteredStyle | null | undefined)[] | null | undefined, currentValue: false | ViewStyle | import("react-native").RegisteredStyle | import("react-native").RecursiveArray | null | undefined> | readonly (false | ViewStyle | import("react-native").RegisteredStyle | null | undefined)[] | null | undefined, currentIndex: number, array: (false | ViewStyle | import("react-native").RegisteredStyle | import("react-native").RecursiveArray | null | undefined> | readonly (false | ViewStyle | import("react-native").RegisteredStyle | null | undefined)[] | null | undefined)[]) => false | ViewStyle | import("react-native").RegisteredStyle | import("react-native").RecursiveArray | null | undefined> | readonly (false | ViewStyle | import("react-native").RegisteredStyle | null | undefined)[] | null | undefined): false | ViewStyle | import("react-native").RegisteredStyle | import("react-native").RecursiveArray | null | undefined> | readonly (false | ViewStyle | import("react-native").RegisteredStyle | null | undefined)[] | null | undefined; (callbackfn: (previousValue: false | ViewStyle | import("react-native").RegisteredStyle | import("react-native").RecursiveArray | null | undefined> | readonly (false | ViewStyle | import("react-native").RegisteredStyle | null | undefined)[] | null | undefined, currentValue: false | ViewStyle | import("react-native").RegisteredStyle | import("react-native").RecursiveArray | null | undefined> | readonly (false | ViewStyle | import("react-native").RegisteredStyle | null | undefined)[] | null | undefined, currentIndex: number, array: (false | ViewStyle | import("react-native").RegisteredStyle | import("react-native").RecursiveArray | null | undefined> | readonly (false | ViewStyle | import("react-native").RegisteredStyle | null | undefined)[] | null | undefined)[]) => false | ViewStyle | import("react-native").RegisteredStyle | import("react-native").RecursiveArray | null | undefined> | readonly (false | ViewStyle | import("react-native").RegisteredStyle | null | undefined)[] | null | undefined, initialValue: false | ViewStyle | import("react-native").RegisteredStyle | import("react-native").RecursiveArray | null | undefined> | readonly (false | ViewStyle | import("react-native").RegisteredStyle | null | undefined)[] | null | undefined): false | ViewStyle | import("react-native").RegisteredStyle | import("react-native").RecursiveArray | null | undefined> | readonly (false | ViewStyle | import("react-native").RegisteredStyle | null | undefined)[] | null | undefined; (callbackfn: (previousValue: U_2, currentValue: false | ViewStyle | import("react-native").RegisteredStyle | import("react-native").RecursiveArray | null | undefined> | readonly (false | ViewStyle | import("react-native").RegisteredStyle | null | undefined)[] | null | undefined, currentIndex: number, array: (false | ViewStyle | import("react-native").RegisteredStyle | import("react-native").RecursiveArray | null | undefined> | readonly (false | ViewStyle | import("react-native").RegisteredStyle | null | undefined)[] | null | undefined)[]) => U_2, initialValue: U_2): U_2; }>; find: Animated.WithAnimatedValue<{ | import("react-native").RecursiveArray | null | undefined> | readonly (false | ViewStyle | import("react-native").RegisteredStyle | null | undefined)[] | null | undefined>(predicate: (this: void, value: false | ViewStyle | import("react-native").RegisteredStyle | import("react-native").RecursiveArray | null | undefined> | readonly (false | ViewStyle | import("react-native").RegisteredStyle | null | undefined)[] | null | undefined, index: number, obj: (false | ViewStyle | import("react-native").RegisteredStyle | import("react-native").RecursiveArray | null | undefined> | readonly (false | ViewStyle | import("react-native").RegisteredStyle | null | undefined)[] | null | undefined)[]) => value is S_1, thisArg?: any): S_1 | undefined; (predicate: (value: false | ViewStyle | import("react-native").RegisteredStyle | import("react-native").RecursiveArray | null | undefined> | readonly (false | ViewStyle | import("react-native").RegisteredStyle | null | undefined)[] | null | undefined, index: number, obj: (false | ViewStyle | import("react-native").RegisteredStyle | import("react-native").RecursiveArray | null | undefined> | readonly (false | ViewStyle | import("react-native").RegisteredStyle | null | undefined)[] | null | undefined)[]) => unknown, thisArg?: any): false | ViewStyle | import("react-native").RegisteredStyle | import("react-native").RecursiveArray | null | undefined> | readonly (false | ViewStyle | import("react-native").RegisteredStyle | null | undefined)[] | null | undefined; }>; findIndex: Animated.WithAnimatedValue<(predicate: (value: false | ViewStyle | import("react-native").RegisteredStyle | import("react-native").RecursiveArray | null | undefined> | readonly (false | ViewStyle | import("react-native").RegisteredStyle | null | undefined)[] | null | undefined, index: number, obj: (false | ViewStyle | import("react-native").RegisteredStyle | import("react-native").RecursiveArray | null | undefined> | readonly (false | ViewStyle | import("react-native").RegisteredStyle | null | undefined)[] | null | undefined)[]) => unknown, thisArg?: any) => number>; fill: Animated.WithAnimatedValue<(value: false | ViewStyle | import("react-native").RegisteredStyle | import("react-native").RecursiveArray | null | undefined> | readonly (false | ViewStyle | import("react-native").RegisteredStyle | null | undefined)[] | null | undefined, start?: number | undefined, end?: number | undefined) => import("react-native").RecursiveArray | null | undefined>>; copyWithin: Animated.WithAnimatedValue<(target: number, start: number, end?: number | undefined) => import("react-native").RecursiveArray | null | undefined>>; entries: Animated.WithAnimatedValue<() => IterableIterator<[number, false | ViewStyle | import("react-native").RegisteredStyle | import("react-native").RecursiveArray | null | undefined> | readonly (false | ViewStyle | import("react-native").RegisteredStyle | null | undefined)[] | null | undefined]>>; keys: Animated.WithAnimatedValue<() => IterableIterator>; values: Animated.WithAnimatedValue<() => IterableIterator | import("react-native").RecursiveArray | null | undefined> | readonly (false | ViewStyle | import("react-native").RegisteredStyle | null | undefined)[] | null | undefined>>; includes: Animated.WithAnimatedValue<(searchElement: false | ViewStyle | import("react-native").RegisteredStyle | import("react-native").RecursiveArray | null | undefined> | readonly (false | ViewStyle | import("react-native").RegisteredStyle | null | undefined)[] | null | undefined, fromIndex?: number | undefined) => boolean>; flatMap: Animated.WithAnimatedValue<((callback: (this: This, value: false | ViewStyle | import("react-native").RegisteredStyle | import("react-native").RecursiveArray | null | undefined> | readonly (false | ViewStyle | import("react-native").RegisteredStyle | null | undefined)[] | null | undefined, index: number, array: (false | ViewStyle | import("react-native").RegisteredStyle | import("react-native").RecursiveArray | null | undefined> | readonly (false | ViewStyle | import("react-native").RegisteredStyle | null | undefined)[] | null | undefined)[]) => U_3 | readonly U_3[], thisArg?: This | undefined) => U_3[])>; flat: Animated.WithAnimatedValue<((this: A, depth?: D | undefined) => FlatArray[])>; } | (false & {}) | null | undefined; } & { useCustomTheme?: boolean | undefined; }, any>; export default _default;