import { PropsWithChildren } from 'react'; export interface CardStackItemProps { position?: number; index?: number; sendToBottom?: (index: number) => void; drag?: "x" | "y" | false; className?: string; total?: number; } /** * * @name CardStackItem * @description The CardStackItem component is used to create a card stack item * @param {number} props.position - The position of the card * * @returns React.FC * */ export declare const CardStackItem: ({ position, index, total, sendToBottom, drag, children, className, }: PropsWithChildren) => import("react/jsx-runtime").JSX.Element; export interface CardStackProps { children?: React.ReactNode[]; className?: string; } /** * * @name CardStack * @description The CardStack component is useful to create a stack of cards, like a tinder card stack. Interesting for a dating app, a social network, a forum... * @returns */ export declare function CardStack({ children, className }: Readonly): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=CardStack.d.ts.map