import { WithProofs, IBasicParams, WithSender, TOrder } from './transactions'; import { TSeedTypes } from './types'; export declare const mapObj: (obj: Record, f: (v: T) => U) => Record; export declare function getSenderPublicKey(seedsAndIndexes: [string, number?][], params: Partial): string; export declare const base64Prefix: (str: string | null) => string | null; export declare function addProof(tx: WithProofs, proof: string, index?: number): WithProofs; export declare function convertToPairs(seedObj?: TSeedTypes): [string, number | undefined][]; export declare const isOrder: (p: any) => p is TOrder; export declare function networkByte(p: number | string | undefined, def: number): number; export declare function fee(params: IBasicParams, def: number): string | number; export declare function normalizeAssetId(assetId: string | null): string | null;