import { type PressableProps, type View } from 'react-native'; export interface AnimatedPressableProps extends PressableProps { className?: string; /** Scale applied while pressed. Set to 1 to disable. Default 0.97. */ pressScale?: number; /** Opacity applied while pressed. Set to 1 to disable. Default 1. */ pressOpacity?: number; } /** * Pressable with UI-thread press feedback (scale/opacity via Reanimated). * The shared base for every interactive PanelUI component. */ export declare const AnimatedPressable: import("react").ForwardRefExoticComponent>; //# sourceMappingURL=animated-pressable.d.ts.map