import { QueryDidsWithClaimsArgs, QueryEventByAddedTrustedClaimIssuerArgs, QueryEventsByIndexedArgsArgs, QueryGetHistoryOfPaymentEventsForCaArgs, QueryGetWithholdingTaxesOfCaArgs, QueryInvestmentsArgs, QueryIssuerDidsWithClaimsByTargetArgs, QueryProposalArgs, QueryProposalsArgs, QueryProposalVotesArgs, QueryScopesByIdentityArgs, QuerySettlementsArgs, QueryTickerExternalAgentActionsArgs, QueryTickerExternalAgentHistoryArgs, QueryTokensByTrustedClaimIssuerArgs, QueryTokensHeldByDidArgs, QueryTransactionByHashArgs, QueryTransactionsArgs } from "./types"; import { GraphqlQuery } from "../types/internal"; /** * @hidden * * Get the current voters list for given pipId */ export declare function proposalVotes(variables: QueryProposalVotesArgs): GraphqlQuery; /** * @hidden * * Get all dids with at least one claim for a given scope and from one the given trustedClaimIssuers */ export declare function didsWithClaims(variables: QueryDidsWithClaimsArgs): GraphqlQuery; /** * @hidden * * Get a single event by any of its indexed arguments */ export declare function eventByIndexedArgs(variables: QueryEventsByIndexedArgsArgs): GraphqlQuery; /** * @hidden * * Get all events by any of its indexed arguments */ export declare function eventsByIndexedArgs(variables: QueryEventsByIndexedArgsArgs): GraphqlQuery; /** * @hidden * * Get a transaction by hash */ export declare function transactionByHash(variables: QueryTransactionByHashArgs): GraphqlQuery; /** * @hidden * * Get all proposals optionally filtered by pipId, proposer or state */ export declare function proposals(variables?: QueryProposalsArgs): GraphqlQuery; /** * @hidden * * Get the tickers of all the Assets for which the passed DID is a trusted claim issuer */ export declare function tokensByTrustedClaimIssuer(variables: QueryTokensByTrustedClaimIssuerArgs): GraphqlQuery; /** * @hidden * * Get all tickers of Assets that were held at some point by the given did */ export declare function tokensHeldByDid(variables: QueryTokensHeldByDidArgs): GraphqlQuery; /** * @hidden * * Get transactions */ export declare function transactions(variables?: QueryTransactionsArgs): GraphqlQuery; /** * @hidden * * Get the scopes (and ticker, if applicable) of claims issued on an Identity */ export declare function scopesByIdentity(variables: QueryScopesByIdentityArgs): GraphqlQuery; /** * @hidden * * Get issuer dids with at least one claim for given target */ export declare function issuerDidsWithClaimsByTarget(variables: QueryIssuerDidsWithClaimsByTargetArgs): GraphqlQuery; /** * @hidden * * Get a proposal by its pipId */ export declare function proposal(variables: QueryProposalArgs): GraphqlQuery; /** * @hidden * * Fetch the number of the latest block that has been processed by the middleware */ export declare function latestProcessedBlock(): GraphqlQuery; /** * @hidden * * Middleware heartbeat */ export declare function heartbeat(): GraphqlQuery; /** * @hidden * * Get an added trusted claim issuer event by its indexed arguments */ export declare function eventByAddedTrustedClaimIssuer(variables: QueryEventByAddedTrustedClaimIssuerArgs): GraphqlQuery; /** * @hidden * * Get Settlements where a Portfolio is involved */ export declare function settlements(variables: QuerySettlementsArgs): GraphqlQuery; /** * @hidden * * Get all investments for a given offering */ export declare function investments(variables: QueryInvestmentsArgs): GraphqlQuery; /** * @hidden * * Get current amount of withheld tax for a distribution */ export declare function getWithholdingTaxesOfCa(variables: QueryGetWithholdingTaxesOfCaArgs): GraphqlQuery; /** * @hidden * * Get history of claims for a distribution */ export declare function getHistoryOfPaymentEventsForCa(variables: QueryGetHistoryOfPaymentEventsForCaArgs): GraphqlQuery; /** * @hidden * * Get the transaction history of each external agent of an Asset */ export declare function tickerExternalAgentHistory(variables: QueryTickerExternalAgentHistoryArgs): GraphqlQuery; /** * @hidden * * Get list of Events triggered by actions (from the set of actions that can only be performed by external agents) that have been performed on a specific Asset */ export declare function tickerExternalAgentActions(variables: QueryTickerExternalAgentActionsArgs): GraphqlQuery; //# sourceMappingURL=queries.d.ts.map