/**
based on framer-motion@4.1.17,
Copyright (c) 2018 Framer B.V.
*/
export type { LazyProps } from "./types";
/**
* Used in conjunction with the `m` component to reduce bundle size.
*
* `m` is a version of the `motion` component that only loads functionality
* critical for the initial render.
*
* `LazyMotion` can then be used to either synchronously or asynchronously
* load animation and gesture support.
*
* ```jsx
* // Synchronous loading
* import { LazyMotion, m, domAnimations } from "framer-motion"
*
* function App() {
* return (
*
*
*
* )
* }
*
* // Asynchronous loading
* import { LazyMotion, m } from "framer-motion"
*
* function App() {
* return (
* import('./path/to/domAnimations')}>
*
*
* )
* }
* ```
*
* @public
*/
export { default as LazyMotion } from './LazyMotion.svelte';
//# sourceMappingURL=index.d.ts.map