/** @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 { PressableRef, SlottablePressableProps, SlottableViewProps, ViewRef } from "../types"; type RootProps = SlottableViewProps; type RootRef = ViewRef; declare const Root: React.ForwardRefExoticComponent>; type HeaderProps = SlottableViewProps; type HeaderRef = ViewRef; declare const Header: React.ForwardRefExoticComponent>; type RowProps = SlottablePressableProps; type RowRef = PressableRef; declare const Row: React.ForwardRefExoticComponent, "ref"> & { asChild?: boolean; } & { onKeyDown?: (ev: React.KeyboardEvent) => void; onKeyUp?: (ev: React.KeyboardEvent) => void; } & React.RefAttributes>; type HeadProps = SlottableViewProps; type HeadRef = ViewRef; declare const Head: React.ForwardRefExoticComponent>; type BodyProps = SlottableViewProps; type BodyRef = ViewRef; declare const Body: React.ForwardRefExoticComponent>; type CellProps = SlottableViewProps; type CellRef = ViewRef; declare const Cell: React.ForwardRefExoticComponent>; type FooterProps = SlottableViewProps; type FooterRef = ViewRef; declare const Footer: React.ForwardRefExoticComponent>; export { Body, Cell, Footer, Head, Header, Root, Row }; export type { BodyProps, BodyRef, CellProps, CellRef, FooterProps, FooterRef, HeaderProps, HeaderRef, HeadProps, HeadRef, RootProps, RootRef, RowProps, RowRef, }; //# sourceMappingURL=table.d.ts.map