import { type HTMLAttributes } from "react"; import { type DeckItemProps } from "../deck-item"; export type LayoutAnimation = "slide" | "fade"; export type LayoutAnimationDirection = "horizontal" | "vertical"; export type LayoutAnimationTransition = "increase" | "decrease"; export interface DeckLayoutProps extends HTMLAttributes { /** * The initial item to render. **/ activeIndex?: number; /** * The animation when the slides are shown. **/ animation?: LayoutAnimation; /** * The direction in which items will transition. **/ direction?: LayoutAnimationDirection; /** * Props to be passed to the DeckItem component. */ deckItemProps?: Partial; } export declare const DeckLayout: import("react").ForwardRefExoticComponent>;