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