import type { AllHTMLAttributes } from 'react';
export type CardProps = {
horizontal?: boolean;
hero?: boolean;
clickable?: boolean;
} & Omit, 'is'>;
declare const Card: ({ horizontal, hero, clickable, ...props }: CardProps) => import("react/jsx-runtime").JSX.Element;
export default Card;
//# sourceMappingURL=Card.d.ts.map