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