import { UseMutationOptions } from '@tanstack/react-query'; import type { ResponseWithPagination } from '../helpers'; import { FetcherOptions } from '../../../../fetcher/index.js'; export interface DeleteAccountScopedBannerMutationPathParams { banner: string; } export interface DeleteAccountScopedBannerMutationHeaderParams { 'Harness-Account'?: string; } export type DeleteAccountScopedBannerOkResponse = ResponseWithPagination; export type DeleteAccountScopedBannerErrorResponse = {}; export interface DeleteAccountScopedBannerProps extends DeleteAccountScopedBannerMutationPathParams, Omit, 'url'> { } export declare function deleteAccountScopedBanner(props: DeleteAccountScopedBannerProps): Promise; /** * Deletes the specified Banner in account scope */ export declare function useDeleteAccountScopedBannerMutation(options?: Omit, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult;