import { HTMLChakraProps } from '@chakra-ui/react/styled-system';
import { SlotComponent } from '../../type-utils';
export type TableRootSlotProps = HTMLChakraProps<"table">;
export declare const TableRootSlot: SlotComponent;
export type TableCaptionSlotProps = HTMLChakraProps<"caption">;
export declare const TableCaptionSlot: SlotComponent;
export type TableHeaderSlotProps = HTMLChakraProps<"thead">;
export declare const TableHeaderSlot: SlotComponent;
export type TableBodySlotProps = HTMLChakraProps<"tbody">;
export declare const TableBodySlot: SlotComponent;
export type TableFooterSlotProps = HTMLChakraProps<"tfoot">;
export declare const TableFooterSlot: SlotComponent;
export type TableRowSlotProps = HTMLChakraProps<"tr">;
export declare const TableRowSlot: SlotComponent;
export type TableColumnHeaderSlotProps = HTMLChakraProps<"th">;
export declare const TableColumnHeaderSlot: SlotComponent;
export type TableCellSlotProps = HTMLChakraProps<"td">;
export declare const TableCellSlot: SlotComponent;