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