import { Context } from 'react'; import { SharedValue } from 'react-native-reanimated'; interface BaseButtonAnimationContextState { pressed: SharedValue; } declare const defaultBaseButtonAnimationContext: BaseButtonAnimationContextState; declare const BaseButtonAnimationContext: Context; export { BaseButtonAnimationContext, type BaseButtonAnimationContextState, defaultBaseButtonAnimationContext };