/**
 * Get details for the currently authenticated user
 *
 * @example
 *   ```typescript
 *   const user = await client.getAuthenticatedUser({});
 *
 *   ```;
 */
export declare const GetAuthenticatedUser: new (client: import("../../../../../core").BaseClient) => import("../../../../../core").ApiOperation<Record<string, never>, {
    user: {
        id: string;
        isDeactivated: boolean;
        primaryParty?: string | undefined;
        metadata?: {
            resourceVersion: string;
            annotations: Record<string, string>;
        } | undefined;
        identityProviderId?: string | undefined;
    };
}>;
//# sourceMappingURL=get.d.ts.map