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