import { type FeatureBundle, type LazyFeatureBundle } from '../features';
import { type Snippet } from 'svelte';
/**
 * Props accepted by the LazyMotion component.
 */
type Props = {
    /** Child content rendered inside the active LazyMotion context. */
    children?: Snippet;
    /** Eager or async feature bundle used by descendant `m.*` components. */
    features: FeatureBundle | LazyFeatureBundle;
    /** Enables strict LazyMotion usage checks. Defaults to false. */
    strict?: boolean;
};
declare const LazyMotion: import("svelte").Component<Props, {}, "">;
type LazyMotion = ReturnType<typeof LazyMotion>;
export default LazyMotion;
