/// <reference types="react" />
import React from 'react';
export interface ResultProps {
    style?: any;
    imgUrl?: string | any;
    img?: React.ReactNode;
    title?: React.ReactNode;
    message?: React.ReactNode;
    buttonText?: string;
    buttonType?: 'primary' | 'ghost';
    onButtonPress?: (e?: any) => void;
}
