import type { Snippet } from 'svelte';
interface Props {
    children?: Snippet;
    attributes?: Record<string, any>;
}
/** Renders an HTML `<tfoot>` element. Accepts optional attributes and child content. */
declare const Tfoot: import("svelte").Component<Props, {}, "">;
type Tfoot = ReturnType<typeof Tfoot>;
export default Tfoot;
