import { UseQueryOptions } from '@tanstack/react-query'; import type { LdapGroupResponseResponse } from '../responses/LdapGroupResponseResponse'; import type { ResponseWithPagination } from '../helpers'; import { FetcherOptions } from '../../../../fetcher/index.js'; export interface LdapSettingsSearchGroupQueryPathParams { 'group-id': string; } export interface LdapSettingsSearchGroupQueryHeaderParams { 'Harness-Account'?: string; } export type LdapSettingsSearchGroupOkResponse = ResponseWithPagination; export type LdapSettingsSearchGroupErrorResponse = unknown; export interface LdapSettingsSearchGroupProps extends LdapSettingsSearchGroupQueryPathParams, Omit, 'url'> { } export declare function ldapSettingsSearchGroup(props: LdapSettingsSearchGroupProps): Promise; /** * Search Ldap groups with matching name */ export declare function useLdapSettingsSearchGroupQuery(props: LdapSettingsSearchGroupProps, options?: Omit, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult;