export default TableCell; type TableCell = { $on?(type: string, callback: (e: any) => void): () => void; $set?(props: Partial>): void; }; /** * The equivalent of the HTML `` element. * @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/td * @see https://w3c.github.io/aria/#cell */ declare const TableCell: import("svelte").Component<{ /** * The `class` attribute on the wrapper element. */ class?: string | undefined; /** * Primary slot content. */ children?: Snippet<[]> | undefined; } & Record, {}, "">; type Props = { /** * The `class` attribute on the wrapper element. */ class?: string | undefined; /** * Primary slot content. */ children?: Snippet<[]> | undefined; }; import type { Snippet } from 'svelte';