export declare function createPressable<PressableProps>({ Root, }: {
    Root: React.ComponentType<PressableProps>;
}): React.ForwardRefExoticComponent<React.PropsWithoutRef<PressableProps> & React.RefAttributes<PressableProps>>;
