/** @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 { ToggleGroupProps } from "./types"; declare const Root: React.ForwardRefExoticComponent>; declare const ToggleGroup: React.ForwardRefExoticComponent>; declare const ToggleItem: React.ForwardRefExoticComponent, "ref"> & { asChild?: boolean; } & { onKeyDown?: (ev: React.KeyboardEvent) => void; onKeyUp?: (ev: React.KeyboardEvent) => void; } & { value: string; } & React.RefAttributes>; declare const Separator: React.ForwardRefExoticComponent>; declare const Link: React.ForwardRefExoticComponent, "ref"> & { asChild?: boolean; } & { onKeyDown?: (ev: React.KeyboardEvent) => void; onKeyUp?: (ev: React.KeyboardEvent) => void; } & React.RefAttributes>; declare const Button: React.ForwardRefExoticComponent, "ref"> & { asChild?: boolean; } & { onKeyDown?: (ev: React.KeyboardEvent) => void; onKeyUp?: (ev: React.KeyboardEvent) => void; } & React.RefAttributes>; export { Button, Link, Root, Separator, ToggleGroup, ToggleItem }; //# sourceMappingURL=toolbar.d.ts.map