import React from 'react';
export interface AdvantageNodeProps {
    icon: string;
    advantageStyle: any;
    iconStyle: any;
    title: string;
}
export declare const AdvantageNode: React.FC<AdvantageNodeProps>;
