import React from "react"; interface BasicTableFooterProps { className?: string; children: React.ReactNode; [x: string]: any; } export declare const BasicTableFooter: ({ className, children, ...props }: BasicTableFooterProps) => React.JSX.Element; export {};