import React from "react"; import type { Table } from "@tanstack/react-table"; export type ViewType = "desktop" | "handheld"; export interface FooterProps { readonly table: Table; readonly viewType?: ViewType; } export declare const Footer: ({ table, viewType, }: FooterProps) => React.JSX.Element | null;