6 lines
278 B
TypeScript
6 lines
278 B
TypeScript
import { BoxProps } from '../../primitives/Box';
|
|
export interface RawTrProps extends BoxProps<'tr'> {
|
|
'aria-rowindex'?: number;
|
|
}
|
|
export declare const RawTr: ({ children, ...props }: RawTrProps) => import("react/jsx-runtime").JSX.Element;
|
|
//# sourceMappingURL=RawTr.d.ts.map
|