import { KendoComponent } from '../_types/component';
export declare const CARD_CLASSNAME = "k-card";
declare const states: ("focus" | "disabled" | "selected" | "hover")[];
export type KendoCardOptions = {};
export type KendoCardProps = KendoCardOptions & {
    orientation?: null | 'vertical' | 'horizontal';
    callout?: null | 'true' | 'top' | 'bottom' | 'left' | 'right';
};
export type KendoCardState = {
    [K in (typeof states)[number]]?: boolean;
};
export declare const Card: KendoComponent<KendoCardProps & KendoCardState & React.HTMLAttributes<HTMLDivElement>>;
export default Card;
