Record: {
    typeUrl: string;
    decode(input: Uint8Array | BinaryReader, length?: number): Record;
    encode(message: Record, writer?: BinaryWriter): BinaryWriter;
    fromAmino(object: RecordAmino): Record;
    fromAminoMsg(object: RecordAminoMsg): Record;
    fromPartial(object: {
        ledger?: {
            path?: {
                account?: number;
                addressIndex?: number;
                change?: boolean;
                coinType?: number;
                purpose?: number;
            };
        };
        local?: {
            privKey?: {
                $typeUrl?: string;
                typeUrl?: string;
                value?: Uint8Array;
            };
            privKeyType?: string;
        };
        multi?: {};
        name?: string;
        offline?: {};
        pubKey?: {
            $typeUrl?: string;
            typeUrl?: string;
            value?: Uint8Array;
        };
    }): Record;
    fromProtoMsg(message: RecordProtoMsg): Record;
    toAmino(message: Record): RecordAmino;
    toAminoMsg(message: Record): RecordAminoMsg;
    toProto(message: Record): Uint8Array;
    toProtoMsg(message: Record): RecordProtoMsg;
}