import * as React from 'react'; import { ColorValue, PressableProps, View } from 'react-native'; export type PressableHighlightProps = PressableProps & React.RefAttributes & { /** * The color of the underlay that will show through when the touch is active. */ underlayColor?: ColorValue | undefined; }; /** * Click on the component with the highlighted background. Referenced `Pressable` and `TouchableHighlight`. */ export declare function PressableHighlight(props: PressableHighlightProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=PressableHighlight.d.ts.map