import * as react_jsx_runtime from 'react/jsx-runtime'; interface TableViewMoreFooterProps { totalCount: number; visibleCount: number; onViewMore: () => void; /** Defaults to "View more" */ viewMoreLabel?: string; /** When false, footer is full-bleed (parent owns horizontal padding). */ edgeInset?: boolean; className?: string; } /** Footer chrome for embedded tables — expands inline or navigates via `onViewMore`. */ declare function TableViewMoreFooter({ totalCount, visibleCount, onViewMore, viewMoreLabel, edgeInset, className, }: TableViewMoreFooterProps): react_jsx_runtime.JSX.Element | null; export { TableViewMoreFooter, type TableViewMoreFooterProps };