export interface ResultMessageProps { message: string; title: string; error?: boolean; errorMessage?: string; buttonText?: string; onButtonClick?: () => void; className?: string; [props: string]: any; } export declare const ResultMessage: ({ message, title, error, errorMessage, buttonText, onButtonClick, className, ...props }: ResultMessageProps) => import("@emotion/react/jsx-runtime").JSX.Element;