@motion.page/sdk 1.1.3 → 1.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -26,6 +26,7 @@
26
26
  import type { TargetInput, AnimationConfig, AnimationEntry, AnimationVars } from '../types';
27
27
  import { Timeline } from './Timeline';
28
28
  import { MotionContext } from './MotionContext';
29
+ import type { ResponsiveManager, ResponsiveVariants, ResponsiveBreakpointConfig } from '../responsive/ResponsiveManager';
29
30
  /**
30
31
  * Motion function overloads
31
32
  */
@@ -53,6 +54,7 @@ declare namespace MotionFunction {
53
54
  readonly normalize: typeof import("../utils/MotionUtils").normalize;
54
55
  readonly wrap: typeof import("../utils/MotionUtils").wrap;
55
56
  };
57
+ var responsive: (_name: string, variants: ResponsiveVariants, breakpointConfig: ResponsiveBreakpointConfig) => ResponsiveManager | undefined;
56
58
  }
57
59
  export declare const Motion: typeof MotionFunction;
58
60
  export {};