import type { CSSProperties } from 'react';
import type { ActionExecuted } from '../../sdk-types';
export interface ContactCardProps {
    action: ActionExecuted;
    style?: CSSProperties;
}
export declare function ContactCard({ action, style }: ContactCardProps): import("react/jsx-runtime").JSX.Element;
