/**
 * Global configuration for motion-v.
 *
 * @example
 * ```ts
 * import { motionGlobalConfig } from 'motion-v'
 * motionGlobalConfig.motionAttribute = 'data-mv'
 * ```
 */
export declare const motionGlobalConfig: {
    /**
     * The data attribute used to identify motion elements in the DOM.
     * Used for AnimatePresence exit detection and VE parent hierarchy resolution.
     */
    motionAttribute: string;
};
