import { UseMutationOptions } from '@tanstack/react-query'; import type { ResponseWithPagination } from '../helpers'; import { FetcherOptions } from '../../../../fetcher/index.js'; export interface LdapSettingsSyncGroupsMutationHeaderParams { 'Harness-Account'?: string; } export type LdapSettingsSyncGroupsOkResponse = ResponseWithPagination; export type LdapSettingsSyncGroupsErrorResponse = unknown; export interface LdapSettingsSyncGroupsProps extends Omit, 'url'> { } export declare function ldapSettingsSyncGroups(props: LdapSettingsSyncGroupsProps): Promise; /** * Ldap Settings Sync User Groups */ export declare function useLdapSettingsSyncGroupsMutation(options?: Omit, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult;