/*! Copyright 2022 SecuX Technology Inc Copyright Chen Wei-En Copyright Wu Tsung-Yu Licensed under the Apache License, Version 2.0 (the License); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an AS IS BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ import { MemoType } from 'stellar-base'; export declare const ow_bip32Path: import("ow").StringPredicate; export declare const ow_address: import("ow").StringPredicate; export type memoObj = { Type: MemoType; Value: string; }; export declare const ow_memoObj: import("ow").ObjectPredicate<{ Type: string; Value: string; }>; export type txDetail = { from?: string; to: string; amount: string; sequence: string | number; fee: string | number; memo?: memoObj; networkPassphrase?: string; needCreateAccount?: boolean; }; export declare const ow_txDetail: import("ow").ObjectPredicate<{ from: string; to: string; amount: string; sequence: string | number; fee: string | number; memo: { Type: string; Value: string; } | undefined; networkPassphrase: string | undefined; needCreateAccount: boolean | undefined; }>;