/** * @deprecated Will be removed in next major release. Use `KbqAnimationCurves` instead. * * @docs-private */ export declare enum AnimationCurves { StandardCurve = "cubic-bezier(0.4,0.0,0.2,1)", DecelerationCurve = "cubic-bezier(0.0,0.0,0.2,1)", AccelerationCurve = "cubic-bezier(0.4,0.0,1,1)", SharpCurve = "cubic-bezier(0.4,0.0,0.6,1)" } /** * Koobiq components animation curves * * @docs-private */ export declare enum KbqAnimationCurves { StandardCurve = "cubic-bezier(0.4,0.0,0.2,1)", DecelerationCurve = "cubic-bezier(0.0,0.0,0.2,1)", AccelerationCurve = "cubic-bezier(0.4,0.0,1,1)", SharpCurve = "cubic-bezier(0.4,0.0,0.6,1)", EaseInOut = "ease-in-out", EaseInOutQuad = "cubic-bezier(0.455,0.03,0.515,0.955)" } /** * Koobiq components animation durations * * @docs-private */ export declare enum KbqAnimationDurations { Long = "300ms", Complex = "250ms", Entering = "150ms", Exiting = "125ms", Rapid = "100ms", Instant = "50ms" }