Repository URL to install this package:
|
Version:
0.0.4 ▾
|
/// <reference types="react" />
import { EasingFunction } from 'framer-motion';
export declare type Easing = [number, number, number, number] | 'linear' | 'easeIn' | 'easeOut' | 'easeInOut' | 'circIn' | 'circOut' | 'circInOut' | 'backIn' | 'backOut' | 'backInOut' | 'anticipate' | EasingFunction;
declare type Slide = {
layoutId?: string;
duration: number;
ease: Easing;
};
export declare const SlideOne: ({ layoutId, duration, ease }: Slide) => JSX.Element;
export declare const SlideTwo: ({ layoutId, duration, ease }: Slide) => JSX.Element;
export declare const SlideThree: ({ layoutId, duration, ease }: Slide) => JSX.Element;
export {};