import type { MotionProps } from '../types';
import { type Snippet } from 'svelte';
import type { SvelteHTMLElements } from 'svelte/elements';
import { type MotionValueChild } from '../utils/motionValueChild';
type Props = MotionProps & {
    children?: Snippet;
    motionValueChild?: MotionValueChild;
    tag: keyof SvelteHTMLElements;
    [key: string]: unknown;
};
declare const MotionContainer: import("svelte").Component<Props, {}, "ref">;
type MotionContainer = ReturnType<typeof MotionContainer>;
export default MotionContainer;
