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 TableHeadProps extends HTMLChakraProps<"thead"> {
|
|
}
|
|
declare const Thead: _chakra_ui_system.ComponentWithAs<"thead", TableHeadProps>;
|
|
|
|
export { TableHeadProps, Thead };
|