export interface Props { title?: string; message: string; chainType?: string; approve: VoidFunction; reject: VoidFunction; approveBtnStatus: "normal" | "loading" | "success"; } declare const SignMessageUI: ({ title, message, approve, reject, approveBtnStatus, }: Props) => import("react/jsx-runtime").JSX.Element; export default SignMessageUI;