import React from "react"; export interface DataTableFooterProps extends React.HTMLAttributes { readonly children: React.ReactNode; } export declare function DataTableFooter({ children, className, ...props }: DataTableFooterProps): React.JSX.Element;