import type { Snippet } from 'svelte';
import type { MotionConfigProps } from '../types';
type $$ComponentProps = MotionConfigProps & {
    children?: Snippet;
};
declare const MotionConfig: import("svelte").Component<$$ComponentProps, {}, "">;
type MotionConfig = ReturnType<typeof MotionConfig>;
export default MotionConfig;
