import { TCard, TItems, SIZES } from '../types';
interface ICardInput {
    items: TItems[];
    position?: number;
    width?: SIZES;
    title?: string;
}
export declare const createCard: ({ items, width, title, position, }: ICardInput) => TCard;
export {};
