import type { HTMLAttributes } from 'svelte/elements';
type Props = HTMLAttributes<HTMLTableSectionElement> & {
    sticky?: boolean;
};
declare const TableFooter: import("svelte").Component<Props, {}, "">;
type TableFooter = ReturnType<typeof TableFooter>;
export default TableFooter;
