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