import React from 'react'; import { BoxSystemProps } from './Box'; import { StyleConfig } from '../utils/styleConfig'; export declare type TableParts = { table: ''; thead: ''; tfoot: ''; tbody: ''; tr: ''; th: ''; td: ''; }; declare type TableDOMProps = React.ComponentPropsWithRef<'table'>; declare type TableStyleConfigProp = { styleConfig?: StyleConfig; }; declare type TableSystemProps = BoxSystemProps; export declare type TableProps = TableDOMProps & TableStyleConfigProp & TableSystemProps; export declare const Table: React.ForwardRefExoticComponent & React.RefAttributes>; export declare type TheadProps = TableSystemProps & React.ComponentPropsWithRef<'thead'>; export declare const Thead: React.ForwardRefExoticComponent & React.RefAttributes>; export declare type TfootProps = TableSystemProps & React.ComponentPropsWithRef<'tfoot'>; export declare const Tfoot: React.ForwardRefExoticComponent & React.RefAttributes>; export declare type TbodyProps = TableSystemProps & React.ComponentPropsWithRef<'tbody'>; export declare const Tbody: React.ForwardRefExoticComponent & React.RefAttributes>; export declare type TrProps = TableSystemProps & React.ComponentPropsWithRef<'tr'>; export declare const Tr: React.ForwardRefExoticComponent & React.RefAttributes>; export declare type ThProps = TableSystemProps & React.ComponentPropsWithRef<'th'>; export declare const Th: React.ForwardRefExoticComponent & React.RefAttributes>; export declare type TdProps = TableSystemProps & React.ComponentPropsWithRef<'td'>; export declare const Td: React.ForwardRefExoticComponent & React.RefAttributes>; export {};