/** @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"; declare const Root: React.ForwardRefExoticComponent, "ref"> & { asChild?: boolean; } & { onKeyDown?: (ev: React.KeyboardEvent) => void; onKeyUp?: (ev: React.KeyboardEvent) => void; } & { checked: boolean; onCheckedChange: (checked: boolean) => void; disabled?: boolean; } & React.RefAttributes>; declare const Indicator: React.ForwardRefExoticComponent>; export { Indicator, Root }; //# sourceMappingURL=checkbox.d.ts.map