import Base, { MaybeRaw } from "../../../../../Base"; import { ConnectionSettings } from "../../../../../interfaces/idp/user/ConnectionSettings"; export declare class IdpConnections extends Base { /** * Get connection settings for all organizations the user is a part of. * * Must have a set authentication token. * * @returns connection settings for each organization */ get(raw?: { raw: R; }): Promise>; protected getEndpoint(): string; }