import React from 'react'; import { GenericComponentType } from '../../types'; export type IPressableComponentType = GenericComponentType; export declare const Pressable: IPressableComponentType | ((state: import("react-native").PressableStateCallbackType) => import("react-native").StyleProp), unknown, import("react-native").PressableProps & React.RefAttributes, "Pressable"> & Omit & { tabIndex?: 0 | -1 | undefined; } & { children?: React.ReactNode | (({ hovered, pressed, focused, focusVisible, disabled, }: { hovered?: boolean | undefined; pressed?: boolean | undefined; focused?: boolean | undefined; focusVisible?: boolean | undefined; disabled?: boolean | undefined; }) => React.ReactNode); }, "ref"> & React.RefAttributes>>;