QueryGetMatchResultResponse: {
    typeUrl: string;
    decode(input: Uint8Array | BinaryReader, length?: number): QueryGetMatchResultResponse;
    encode(message: QueryGetMatchResultResponse, writer?: BinaryWriter): BinaryWriter;
    fromAmino(object: QueryGetMatchResultResponseAmino): QueryGetMatchResultResponse;
    fromAminoMsg(object: QueryGetMatchResultResponseAminoMsg): QueryGetMatchResultResponse;
    fromPartial(object: {
        result?: {
            cancellations?: {
                assetDenom?: string;
                contractAddr?: string;
                creator?: string;
                id?: bigint;
                initiator?: CancellationInitiator;
                positionDirection?: PositionDirection;
                price?: string;
                priceDenom?: string;
            }[];
            contractAddr?: string;
            height?: bigint;
            orders?: {
                account?: string;
                assetDenom?: string;
                contractAddr?: string;
                data?: string;
                id?: bigint;
                nominal?: string;
                orderType?: OrderType;
                positionDirection?: PositionDirection;
                price?: string;
                priceDenom?: string;
                quantity?: string;
                status?: OrderStatus;
                statusDescription?: string;
                triggerPrice?: string;
                triggerStatus?: boolean;
            }[];
            settlements?: {
                account?: string;
                assetDenom?: string;
                executionCostOrProceed?: string;
                expectedCostOrProceed?: string;
                height?: bigint;
                orderId?: bigint;
                orderType?: string;
                positionDirection?: string;
                priceDenom?: string;
                quantity?: string;
                settlementId?: bigint;
                timestamp?: bigint;
            }[];
        };
    }): QueryGetMatchResultResponse;
    fromProtoMsg(message: QueryGetMatchResultResponseProtoMsg): QueryGetMatchResultResponse;
    toAmino(message: QueryGetMatchResultResponse): QueryGetMatchResultResponseAmino;
    toProto(message: QueryGetMatchResultResponse): Uint8Array;
    toProtoMsg(message: QueryGetMatchResultResponse): QueryGetMatchResultResponseProtoMsg;
}