9 lines
288 B
TypeScript
9 lines
288 B
TypeScript
import * as _chakra_ui_system from '@chakra-ui/system';
|
|
import { HTMLChakraProps } from '@chakra-ui/system';
|
|
|
|
interface TableBodyProps extends HTMLChakraProps<"tbody"> {
|
|
}
|
|
declare const Tbody: _chakra_ui_system.ComponentWithAs<"tbody", TableBodyProps>;
|
|
|
|
export { TableBodyProps, Tbody };
|