import type { MotionConfigProps } from '../types.js';
/**
 * Retrieve the current motion configuration from Svelte component context.
 *
 * @returns The active `MotionConfigProps`, or `undefined` if none was set by a parent.
 */
export declare const getMotionConfig: () => MotionConfigProps | undefined;
/**
 * Provide motion configuration to descendant components via Svelte context.
 *
 * @param motionConfig The configuration to propagate (e.g. `transition`).
 * @returns The same `MotionConfigProps` that was set.
 */
export declare const createMotionConfig: (motionConfig: MotionConfigProps) => MotionConfigProps;
