import SignerEntry from '../types/util/SignerEntry'; import { Explanation } from './Explanation'; /** * Explains a SignerEntry object. * * @property account - An explanation of the account. * @property signerWeight - An explanation of the signerWeight. */ export interface SignerEntryExplanation { readonly account: Explanation; readonly signerWeight: Explanation; } /** * Creates an explanation for a SignerEntry. * * @param entry - The entry to be explained. * @param entry.SignerEntry - Contains the actual contents of the entry. * @returns An explanation of the signer entry. */ export declare function createSignerEntryExplanation(entry: { readonly SignerEntry: SignerEntry; }): SignerEntryExplanation; //# sourceMappingURL=ExplainSignerEntry.d.ts.map