import { type HTMLAttributes } from "react"; import type { LayoutAnimation } from "../deck-layout"; export interface DeckItemProps extends HTMLAttributes { activeIndex?: number; animation?: LayoutAnimation; index: number; role?: string; } export declare const DeckItem: import("react").ForwardRefExoticComponent>;