export declare const CARD_CLASSNAME = "k-card";
declare const states: ("focus" | "disabled" | "selected" | "hover")[];
declare const options: {
    themeColor: ("error" | "success" | "primary" | "info" | "warning")[];
};
export type KendoCardOptions = {
    themeColor?: (typeof options.themeColor)[number] | null;
};
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: {
    (props: KendoCardProps & KendoCardState & React.HTMLAttributes<HTMLDivElement>): import("react/jsx-runtime").JSX.Element;
    states: ("focus" | "disabled" | "selected" | "hover")[];
    options: {
        themeColor: ("error" | "success" | "primary" | "info" | "warning")[];
    };
    className: string;
    defaultOptions: {};
};
export default Card;
