import React from 'react'; import { CSS } from '../theme/stitches.config'; import { TableFooterVatiantsProps } from './table.styles'; declare type NativeAttrs = React.HTMLAttributes; export declare type TableFooterProps = NativeAttrs & TableFooterVatiantsProps & { css?: CSS; }; declare const TableFooter: React.ForwardRefExoticComponent & { css?: CSS | undefined; } & { children?: React.ReactNode; } & React.RefAttributes>; export default TableFooter;