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