import type { Snippet } from 'svelte';
interface Props {
    children?: Snippet;
    attributes?: Record<string, any>;
}
/** Renders an HTML `<th>` element. Accepts optional attributes and child content. */
declare const Th: import("svelte").Component<Props, {}, "">;
type Th = ReturnType<typeof Th>;
export default Th;
