import React from "react"; import { PressableProps, StyleProp, View, ViewStyle } from "react-native"; export type PressableHightlightProps = { /** * Whether or not the pressable surface should be disabled or not. */ disabled?: boolean; /** * The style to apply to this component. * Any stylings based on the state of the press is applied on top of this. */ style?: StyleProp; } & Omit; export declare const PressableHighlight: React.ForwardRefExoticComponent<{ /** * Whether or not the pressable surface should be disabled or not. */ disabled?: boolean; /** * The style to apply to this component. * Any stylings based on the state of the press is applied on top of this. */ style?: StyleProp; } & Omit & { children?: React.ReactNode | undefined; } & React.RefAttributes>;