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