import React from 'react'; import { TableVariantProps } from './table.styles'; export interface TableProps extends TableVariantProps, React.TableHTMLAttributes { classNames?: Partial<{ table: string; thead: string; tbody: string; tr: string; th: string; td: string; }>; } export declare const Table: React.ForwardRefExoticComponent>; //# sourceMappingURL=table.d.ts.map