/** @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 { RootProps } from "./types"; declare const Root: React.ForwardRefExoticComponent void; orientation?: "horizontal" | "vertical"; dir?: "ltr" | "rtl"; activationMode?: "automatic" | "manual"; } & React.RefAttributes>; declare function useRootContext(): RootProps; declare const List: React.ForwardRefExoticComponent>; declare const Trigger: React.ForwardRefExoticComponent, "ref"> & { asChild?: boolean; } & { onKeyDown?: (ev: React.KeyboardEvent) => void; onKeyUp?: (ev: React.KeyboardEvent) => void; } & { value: string; } & React.RefAttributes>; declare function useTriggerContext(): { value: string; }; declare const Content: React.ForwardRefExoticComponent>; export { Content, List, Root, Trigger, useRootContext, useTriggerContext }; //# sourceMappingURL=tabs.web.d.ts.map