/** based on framer-motion@4.1.17, Copyright (c) 2018 Framer B.V. */ import type { Writable } from "svelte/store"; import type { Transition } from "../types"; import type { TransformPoint2D } from "../types/geometry"; /** * @public */ export interface MotionConfigContextObject { /** * @internal */ transformPagePoint: TransformPoint2D; /** * Determines whether this is a static context ie the Framer canvas. If so, * it'll disable all dynamic functionality. * * @internal */ isStatic: boolean; /** * Defines a new default transition for the entire tree. * * @public */ transition?: Transition; } /** * @public */ declare var MotionConfigContext: (c?: any) => Writable; export { MotionConfigContext }; //# sourceMappingURL=MotionConfigContext.d.ts.map