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