QueryContractInfoResponse: {
    typeUrl: string;
    decode(input: Uint8Array | BinaryReader, length?: number): QueryContractInfoResponse;
    encode(message: QueryContractInfoResponse, writer?: BinaryWriter): BinaryWriter;
    fromAmino(object: QueryContractInfoResponseAmino): QueryContractInfoResponse;
    fromAminoMsg(object: QueryContractInfoResponseAminoMsg): QueryContractInfoResponse;
    fromPartial(object: {
        address?: string;
        contractInfo?: {
            admin?: string;
            codeId?: bigint;
            created?: {
                blockHeight?: bigint;
                txIndex?: bigint;
            };
            creator?: string;
            extension?: {
                $typeUrl?: string;
                typeUrl?: string;
                value?: Uint8Array;
            };
            ibcPortId?: string;
            label?: string;
        };
    }): QueryContractInfoResponse;
    fromProtoMsg(message: QueryContractInfoResponseProtoMsg): QueryContractInfoResponse;
    toAmino(message: QueryContractInfoResponse): QueryContractInfoResponseAmino;
    toAminoMsg(message: QueryContractInfoResponse): QueryContractInfoResponseAminoMsg;
    toProto(message: QueryContractInfoResponse): Uint8Array;
    toProtoMsg(message: QueryContractInfoResponse): QueryContractInfoResponseProtoMsg;
}