import { Container, BaseOutProperties, InProperties } from '@pmndrs/uikit'; import type { Card } from './Card'; export type CardStackProperties = BaseOutProperties & { scrollPosition: number; cards: Card[]; }; export declare class CardStack extends Container { private containerCache; constructor(properties: InProperties); private createContainer; private removeAndDisposeContainer; /** * Disposes the component, triggering the abortableEffect cleanup * to dispose all cached containers. */ dispose(): void; }