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