import type { Snippet } from 'svelte'; import type { HTMLAttributes } from 'svelte/elements'; type $$ComponentProps = HTMLAttributes & { as?: keyof HTMLElementTagNameMap; children?: Snippet; }; declare const TableInset: import("svelte").Component<$$ComponentProps, {}, "">; type TableInset = ReturnType; export default TableInset;