/**
 * Update identity provider config
 *
 * @example
 *   ```typescript
 *   const result = await client.updateIdentityProviderConfig({
 *     identityProviderConfig: { ... },
 *     updateMask: { paths: ['isDeactivated'] }
 *   });
 *
 *   ```;
 */
export declare const UpdateIdentityProviderConfig: new (client: import("../../../../../core").BaseClient) => import("../../../../../core").ApiOperation<{
    identityProviderConfig: {
        identityProviderId: string;
        isDeactivated: boolean;
        issuer: string;
        jwksUrl: string;
        audience?: string | undefined;
    };
    updateMask: {
        paths: string[];
    };
}, {
    identityProviderConfig: {
        identityProviderId: string;
        isDeactivated: boolean;
        issuer: string;
        jwksUrl: string;
        audience?: string | undefined;
    };
}>;
//# sourceMappingURL=patch-idp.d.ts.map