import type { Snippet } from 'svelte';
interface Props {
    children?: Snippet;
    attributes?: Record<string, any>;
}
declare const Tbody: import("svelte").Component<Props, {}, "">;
type Tbody = ReturnType<typeof Tbody>;
export default Tbody;
