SourceCodeInfo: {
    typeUrl: string;
    decode(input: Uint8Array | BinaryReader, length?: number): SourceCodeInfo;
    encode(message: SourceCodeInfo, writer?: BinaryWriter): BinaryWriter;
    fromAmino(object: SourceCodeInfoAmino): SourceCodeInfo;
    fromAminoMsg(object: SourceCodeInfoAminoMsg): SourceCodeInfo;
    fromPartial(object: {
        location?: {
            leadingComments?: string;
            leadingDetachedComments?: string[];
            path?: number[];
            span?: number[];
            trailingComments?: string;
        }[];
    }): SourceCodeInfo;
    fromProtoMsg(message: SourceCodeInfoProtoMsg): SourceCodeInfo;
    toAmino(message: SourceCodeInfo): SourceCodeInfoAmino;
    toProto(message: SourceCodeInfo): Uint8Array;
    toProtoMsg(message: SourceCodeInfo): SourceCodeInfoProtoMsg;
}