import { UseQueryOptions } from '@tanstack/react-query'; import type { LdapSettingsResponseResponse } from '../responses/LdapSettingsResponseResponse'; import type { ResponseWithPagination } from '../helpers'; import { FetcherOptions } from '../../../../fetcher/index.js'; export interface GetLdapSettingsQueryPathParams { 'ldap-settings-id': string; } export interface GetLdapSettingsQueryHeaderParams { 'Harness-Account'?: string; } export type GetLdapSettingsOkResponse = ResponseWithPagination; export type GetLdapSettingsErrorResponse = unknown; export interface GetLdapSettingsProps extends GetLdapSettingsQueryPathParams, Omit, 'url'> { } export declare function getLdapSettings(props: GetLdapSettingsProps): Promise; /** * Get Account NG Ldap settings */ export declare function useGetLdapSettingsQuery(props: GetLdapSettingsProps, options?: Omit, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult;