/** @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 { ItemProps, PortalProps, RootProps, ViewportProps } from "./types"; declare const Root: React.ForwardRefExoticComponent void; delayDuration?: number; skipDelayDuration?: number; dir?: "ltr" | "rtl"; orientation?: "horizontal" | "vertical"; } & React.RefAttributes>; declare function useRootContext(): RootProps; declare const List: React.ForwardRefExoticComponent>; declare const Item: React.ForwardRefExoticComponent>; declare function useItemContext(): ItemProps; declare const Trigger: React.ForwardRefExoticComponent, "ref"> & { asChild?: boolean; } & { onKeyDown?: (ev: React.KeyboardEvent) => void; onKeyUp?: (ev: React.KeyboardEvent) => void; } & React.RefAttributes>; declare function Portal({ children }: PortalProps): import("react/jsx-runtime").JSX.Element; declare const Content: React.ForwardRefExoticComponent>; declare const Link: React.ForwardRefExoticComponent, "ref"> & { asChild?: boolean; } & { onKeyDown?: (ev: React.KeyboardEvent) => void; onKeyUp?: (ev: React.KeyboardEvent) => void; } & { active?: boolean; } & React.RefAttributes>; declare const Viewport: React.ForwardRefExoticComponent>; declare const Indicator: React.ForwardRefExoticComponent>; export { Content, Indicator, Item, Link, List, Portal, Root, Trigger, useItemContext, useRootContext, Viewport, }; //# sourceMappingURL=navigation-menu.web.d.ts.map