import type { Snippet } from 'svelte';
interface Props {
    children?: Snippet;
}
/** Renders a markdown table body section as a `<tbody>` element. */
declare const TableBody: import("svelte").Component<Props, {}, "">;
type TableBody = ReturnType<typeof TableBody>;
export default TableBody;
