import { ApiResponse, ExtraOptions } from "../../request"; import { WellKnownConnection } from "../../schema/connection"; import { GlobalCounterpartiesSearchParams, GlobalCounterparty } from "../../schema/counterparty"; export interface UnauthenticatedRequests { getGlobalCounterparties: (params?: GlobalCounterpartiesSearchParams, options?: ExtraOptions) => Promise>; listConnections: (query?: { clientId?: string; }) => Promise; listAPIConnections: (query?: { clientId?: string; }) => Promise; /** Identity `.well-known/legacy-connections` */ listLegacyConnections: (query?: { clientId?: string; }) => Promise; listTestConnections: (query?: { clientId?: string; }) => Promise; listBetaConnections: (query?: { clientId?: string; }) => Promise; listPaymentsConnections: (query?: { clientId?: string; }) => Promise; getOpenIdConfig: () => Promise; } //# sourceMappingURL=unauthenticated.d.ts.map