import type { Snippet } from 'svelte';
interface Props {
    class?: string;
    children: Snippet;
}
/**
 * [Go to docs](https://svelte-rune-highlight.codewithshin.com/)
 * ## Props
 * @prop class: className
 * @prop children
 */
declare const HighlightTable: import("svelte").Component<Props, {}, "">;
type HighlightTable = ReturnType<typeof HighlightTable>;
export default HighlightTable;
