import { UseMutationOptions } from '@tanstack/react-query'; import type { SloNotificationDto } from '../schemas/SloNotificationDto'; import type { ResponseWithPagination } from '../helpers'; import { FetcherOptions } from '../../../../fetcher/index.js'; export interface SloNotificationTriggerMutationHeaderParams { 'Harness-Account'?: string; } export type SloNotificationTriggerRequestBody = SloNotificationDto; export type SloNotificationTriggerOkResponse = ResponseWithPagination; export type SloNotificationTriggerErrorResponse = unknown; export interface SloNotificationTriggerProps extends Omit, 'url'> { body: SloNotificationTriggerRequestBody; } export declare function sloNotificationTrigger(props: SloNotificationTriggerProps): Promise; /** * SLO Notification Trigger */ export declare function useSloNotificationTriggerMutation(options?: Omit, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult;