/** @jsxImportSource nativewind */ /** * Source code copied and adapted from: * https://github.com/roninoss/rn-primitives * License: MIT (c) 2024 RoninOSS */ import * as React from "react"; import { View } from "react-native"; import type { PortalProps, SharedRootContext, TriggerRef } from "./types"; declare const Root: React.ForwardRefExoticComponent void; openDelay?: number; closeDelay?: number; } & React.RefAttributes>; declare function useRootContext(): SharedRootContext; declare const Trigger: React.ForwardRefExoticComponent, "ref"> & { asChild?: boolean; } & { onKeyDown?: (ev: React.KeyboardEvent) => void; onKeyUp?: (ev: React.KeyboardEvent) => void; } & React.RefAttributes>; declare function Portal({ forceMount, container, children }: PortalProps): import("react/jsx-runtime").JSX.Element; declare const Overlay: React.ForwardRefExoticComponent, "ref"> & { asChild?: boolean; } & { onKeyDown?: (ev: React.KeyboardEvent) => void; onKeyUp?: (ev: React.KeyboardEvent) => void; } & { closeOnPress?: boolean; } & React.RefAttributes>; declare const Content: React.ForwardRefExoticComponent>; export { Content, Overlay, Portal, Root, Trigger, useRootContext }; //# sourceMappingURL=hover-card.web.d.ts.map