import { type HTMLElementTagNameType } from './utils';
import { type IconNames } from './styles';
export interface CardProps {
id?: string;
title?: string;
subtitle?: string;
icon?: IconNames;
isActive?: boolean;
isEditing?: boolean;
tagName?: HTMLElementTagNameType;
isDraggable?: boolean;
}