import React, { ReactNode } from "react"; import { XHComponentCommonProps } from "../../types"; declare const ImageMap: { success: string; empty: string; fail: string; networkErr: string; wait: string; submitted: string; faceEmpty: string; }; export declare type ResultStatus = keyof typeof ImageMap; export declare type ResultProps = { status: ResultStatus; title: ReactNode; desc?: ReactNode; slot?: ReactNode; action?: string; full?: boolean; onAction?: () => void; } & XHComponentCommonProps; declare const Result: React.FC; export default Result;