/** * WAAPI Core — FLIP animation infrastructure. * * Provides the composable hooks and constants that power * Reorder, Morph, and other WAAPI primitives. * * @module primitives/waapi/core */ export { TIMING, TRANSFORMS, EFFECTS, EASINGS, RESPONSIVE_CONFIGS, ANIMATION_CONFIGS, ANIMATION_DEFAULTS, PRESETS, getResponsiveDuration, getResponsiveStagger, } from './animationConstants'; export type { IFLIPDelta, IAnimationTiming, IPositionRect, IElementRegistryAPI, IElementRegistryCallbacks, IPositionCaptureAPI, IPositionCaptureOptions, IFLIPAnimationAPI, IFLIPAnimationOptions, IExitOptions, IEnterOptions, IAnimationOrchestratorConfig, IAnimationOrchestratorAPI, IOrchestratorState, IAnimationEvent, } from './types'; export type { FLIPBehavior, ExitPositionStrategy, AnimationPhase, } from './types'; export { useElementRegistry } from './useElementRegistry'; export { usePositionCapture } from './usePositionCapture'; export { useFLIPAnimation } from './useFLIPAnimation'; export { useAnimationOrchestrator } from './useAnimationOrchestrator'; //# sourceMappingURL=index.d.ts.map