import { FunctionComponent, PropsWithChildren } from 'react';
import { CardProps as CardPropsV2 } from './v2/Card';
import { IconicNames, IconicTypes } from '@clubmed/trident-icons';
import { ChipProps } from '../Chip';
interface CardProps extends Omit<CardPropsV2, 'theme'> {
    title: string;
    icon: IconicNames;
    iconType?: IconicTypes;
    theme?: ChipProps['theme'];
    dataName?: string;
}
export declare const Card: FunctionComponent<PropsWithChildren<CardProps>>;
export {};
