import React from 'react';
import type { PressableProps } from 'react-native';
declare function Pressable<T>(StyledPressable: React.ComponentType<T>): React.ForwardRefExoticComponent<Omit<PressableProps, "children"> & {
    tabIndex?: 0 | -1;
} & {
    children?: (({ hovered, pressed, focused, focusVisible, disabled, }: {
        hovered?: boolean;
        pressed?: boolean;
        focused?: boolean;
        focusVisible?: boolean;
        disabled?: boolean;
    }) => React.ReactNode) | React.ReactNode;
} & React.RefAttributes<unknown>>;
export default Pressable;
