import { Snippet } from 'svelte';
import { HTMLAttributes } from 'svelte/elements';
type Props = HTMLAttributes & {
children?: Snippet;
};
declare const Root: import('svelte', { with: { "resolution-mode": "import" } }).Component;
type Root = ReturnType;
export default Root;