import type { JSX } from 'react';
export interface CallToActionCardProps {
    message?: string | JSX.Element;
    callToActionElement: JSX.Element;
    footer?: string | JSX.Element;
    className?: string;
}
/**
 * @deprecated Use `<EmptyState variant="call-to-action" />` instead.
 *
 * https://developers.grafana.com/ui/latest/index.html?path=/docs/information-deprecated-calltoactioncard--docs
 */
export declare const CallToActionCard: ({ message, callToActionElement, footer, className }: CallToActionCardProps) => import("react/jsx-runtime").JSX.Element;
