import React from 'react'; import { IComponentBaseProps } from '../types'; export declare type TableProps = React.TableHTMLAttributes & IComponentBaseProps & { compact?: boolean; zebra?: boolean; }; declare const _default: React.ForwardRefExoticComponent & IComponentBaseProps & { compact?: boolean | undefined; zebra?: boolean | undefined; } & React.RefAttributes> & { Head: React.ForwardRefExoticComponent & { children?: React.ReactNode[] | undefined; } & React.RefAttributes>; Body: React.ForwardRefExoticComponent>; Row: React.ForwardRefExoticComponent & IComponentBaseProps & { children?: React.ReactElement>[] | undefined; active?: boolean | undefined; hover?: boolean | undefined; } & React.RefAttributes>; Footer: React.ForwardRefExoticComponent & IComponentBaseProps & { children?: React.ReactElement>[] | undefined; } & React.RefAttributes>; }; export default _default;