import React from 'react';
export interface DeckItem {
    id: string;
    title: string;
    overview: string;
    posterUrl: string;
}
export interface SwipeListProps {
    deck: DeckItem[];
    onAdd(item: DeckItem): void;
    onDismiss(item: DeckItem): void;
    cardSize?: {
        width: number;
        height: number;
    };
}
export declare function SwipeList({ deck, onAdd, onDismiss, cardSize }: SwipeListProps): React.JSX.Element;
//# sourceMappingURL=index.d.ts.map