import type { IEntryExitAnimationBuilder, EntryExitAnimationFunction, EntryAnimationsValues, ExitAnimationsValues, AnimationConfigFunction, IEntryAnimationBuilder, IExitAnimationBuilder } from '../animationBuilder/commonTypes'; import type { BaseAnimationBuilder } from '../animationBuilder'; import { ComplexAnimationBuilder } from '../animationBuilder'; /** * Rotate from top on the X axis. You can modify the behavior by chaining * methods like `.springify()` or `.duration(500)`. * * You pass it to the `entering` prop on [an Animated * component](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#animated-component). * * @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#flip */ export declare class FlipInXUp extends ComplexAnimationBuilder implements IEntryAnimationBuilder { static presetName: string; static createInstance(this: T): InstanceType; build: () => AnimationConfigFunction; } /** * Rotate from left on the Y axis. You can modify the behavior by chaining * methods like `.springify()` or `.duration(500)`. * * You pass it to the `entering` prop on [an Animated * component](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#animated-component). * * @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#flip */ export declare class FlipInYLeft extends ComplexAnimationBuilder implements IEntryAnimationBuilder { static presetName: string; static createInstance(this: T): InstanceType; build: () => AnimationConfigFunction; } /** * Rotate from bottom on the X axis. You can modify the behavior by chaining * methods like `.springify()` or `.duration(500)`. * * You pass it to the `entering` prop on [an Animated * component](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#animated-component). * * @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#flip */ export declare class FlipInXDown extends ComplexAnimationBuilder implements IEntryAnimationBuilder { static presetName: string; static createInstance(this: T): InstanceType; build: () => AnimationConfigFunction; } /** * Rotate from right on the Y axis. You can modify the behavior by chaining * methods like `.springify()` or `.duration(500)`. * * You pass it to the `entering` prop on [an Animated * component](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#animated-component). * * @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#flip */ export declare class FlipInYRight extends ComplexAnimationBuilder implements IEntryAnimationBuilder { static presetName: string; static createInstance(this: T): InstanceType; build: () => AnimationConfigFunction; } /** * Eased rotate in on the X axis. You can modify the behavior by chaining * methods like `.springify()` or `.duration(500)`. * * You pass it to the `entering` prop on [an Animated * component](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#animated-component). * * @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#flip */ export declare class FlipInEasyX extends ComplexAnimationBuilder implements IEntryExitAnimationBuilder { static presetName: string; static createInstance(this: T): InstanceType; build: () => EntryExitAnimationFunction; } /** * Eased rotate in on the Y axis. You can modify the behavior by chaining * methods like `.springify()` or `.duration(500)`. * * You pass it to the `entering` prop on [an Animated * component](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#animated-component). * * @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#flip */ export declare class FlipInEasyY extends ComplexAnimationBuilder implements IEntryExitAnimationBuilder { static presetName: string; static createInstance(this: T): InstanceType; build: () => EntryExitAnimationFunction; } /** * Rotate to top animation on the X axis. You can modify the behavior by * chaining methods like `.springify()` or `.duration(500)`. * * You pass it to the `exiting` prop on [an Animated * component](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#animated-component). * * @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#flip */ export declare class FlipOutXUp extends ComplexAnimationBuilder implements IExitAnimationBuilder { static presetName: string; static createInstance(this: T): InstanceType; build: () => AnimationConfigFunction; } /** * Rotate to left on the Y axis. You can modify the behavior by chaining methods * like `.springify()` or `.duration(500)`. * * You pass it to the `exiting` prop on [an Animated * component](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#animated-component). * * @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#flip */ export declare class FlipOutYLeft extends ComplexAnimationBuilder implements IExitAnimationBuilder { static presetName: string; static createInstance(this: T): InstanceType; build: () => AnimationConfigFunction; } /** * Rotate to bottom on the X axis. You can modify the behavior by chaining * methods like `.springify()` or `.duration(500)`. * * You pass it to the `exiting` prop on [an Animated * component](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#animated-component). * * @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#flip */ export declare class FlipOutXDown extends ComplexAnimationBuilder implements IExitAnimationBuilder { static presetName: string; static createInstance(this: T): InstanceType; build: () => AnimationConfigFunction; } /** * Rotate to right animation on the Y axis. You can modify the behavior by * chaining methods like `.springify()` or `.duration(500)`. * * You pass it to the `exiting` prop on [an Animated * component](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#animated-component). * * @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#flip */ export declare class FlipOutYRight extends ComplexAnimationBuilder implements IExitAnimationBuilder { static presetName: string; static createInstance(this: T): InstanceType; build: () => AnimationConfigFunction; } /** * Eased rotate on the X axis. You can modify the behavior by chaining methods * like `.springify()` or `.duration(500)`. * * You pass it to the `exiting` prop on [an Animated * component](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#animated-component). * * @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#flip */ export declare class FlipOutEasyX extends ComplexAnimationBuilder implements IEntryExitAnimationBuilder { static presetName: string; static createInstance(this: T): InstanceType; build: () => EntryExitAnimationFunction; } /** * Eased rotate on the Y axis. You can modify the behavior by chaining methods * like `.springify()` or `.duration(500)`. * * You pass it to the `exiting` prop on [an Animated * component](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#animated-component). * * @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#flip */ export declare class FlipOutEasyY extends ComplexAnimationBuilder implements IEntryExitAnimationBuilder { static presetName: string; static createInstance(this: T): InstanceType; build: () => EntryExitAnimationFunction; } //# sourceMappingURL=Flip.d.ts.map