import { TouchableWithoutFeedbackProps } from "react-native"; export interface TouchableWithScaleProps extends TouchableWithoutFeedbackProps { defaultScale?: number; activeScale?: number; } export declare const TouchableWithScale: ({ defaultScale, activeScale, onPressIn, onPressOut, style, children, ...restProps }: TouchableWithScaleProps) => import("react/jsx-runtime").JSX.Element;