import { UseQueryOptions } from '@tanstack/react-query'; import type { ResponseWithPagination } from '../helpers'; import { FetcherOptions } from '../../../../fetcher/index.js'; export interface LdapSettingsSyncGroupWithIdQueryPathParams { 'group-id': string; } export interface LdapSettingsSyncGroupWithIdQueryHeaderParams { 'Harness-Account'?: string; } export type LdapSettingsSyncGroupWithIdOkResponse = ResponseWithPagination; export type LdapSettingsSyncGroupWithIdErrorResponse = unknown; export interface LdapSettingsSyncGroupWithIdProps extends LdapSettingsSyncGroupWithIdQueryPathParams, Omit, 'url'> { } export declare function ldapSettingsSyncGroupWithId(props: LdapSettingsSyncGroupWithIdProps): Promise; /** * Ldap Sync Group with user group id */ export declare function useLdapSettingsSyncGroupWithIdQuery(props: LdapSettingsSyncGroupWithIdProps, options?: Omit, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult;