import { ComponentProps } from 'react'; import { ExternalStyles } from '../../styles'; import { CardVariant } from './cardVariants'; export interface ClickableCardProps extends Omit, 'style'> { style?: ExternalStyles; /** * Defines the visual style of the Card * @default 'outline' */ variant?: CardVariant; /** * Specify whether the Card should be selected */ selected?: boolean; /** * Specify whether the Card should have error appearance */ invalid?: boolean; /** * Specify whether the Card should be disabled */ disabled?: boolean; } export declare function ClickableCard(props: ClickableCardProps): JSX.Element;