import { UseMutationOptions } from '@tanstack/react-query'; import type { LdapSettingsIterationsResponseResponse } from '../responses/LdapSettingsIterationsResponseResponse'; import type { CronExpressionRequestRequestBody } from '../requestBodies/CronExpressionRequestRequestBody'; import type { ResponseWithPagination } from '../helpers'; import { FetcherOptions } from '../../../../fetcher/index.js'; export interface LdapSettingsIterationsMutationHeaderParams { 'Harness-Account'?: string; } export type LdapSettingsIterationsRequestBody = CronExpressionRequestRequestBody; export type LdapSettingsIterationsOkResponse = ResponseWithPagination; export type LdapSettingsIterationsErrorResponse = unknown; export interface LdapSettingsIterationsProps extends Omit, 'url'> { body: LdapSettingsIterationsRequestBody; } export declare function ldapSettingsIterations(props: LdapSettingsIterationsProps): Promise; /** * Ldap Settings iterations */ export declare function useLdapSettingsIterationsMutation(options?: Omit, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult;