import Memo from '../types/util/Memo'; import { Explanation } from './Explanation'; /** * Explains the contents of a memo. * * @property memoData - An explanation of the memo data. * @property memoFormat - An explanation of the memo format. * @property memoType - An explanation of the memo type. */ export interface MemoExplanation { readonly memoData?: Explanation; readonly memoFormat?: Explanation; readonly memoType?: Explanation; } /** * Creates an explanation of a single memo. * * @param memo - The memo to be explained. * @returns An explanation of the memo. */ export declare function createMemoExplanation(memo: Memo): MemoExplanation; //# sourceMappingURL=ExplainMemo.d.ts.map