import { UseMutationOptions } from '@tanstack/react-query'; import type { BannerResponseResponse } from '../responses/BannerResponseResponse'; import type { UpdateBannerRequestRequestBody } from '../requestBodies/UpdateBannerRequestRequestBody'; import type { ResponseWithPagination } from '../helpers'; import { FetcherOptions } from '../../../../fetcher/index.js'; export interface UpdateAccountScopedBannerMutationPathParams { banner: string; } export interface UpdateAccountScopedBannerMutationHeaderParams { 'Harness-Account'?: string; } export type UpdateAccountScopedBannerRequestBody = UpdateBannerRequestRequestBody; export type UpdateAccountScopedBannerOkResponse = ResponseWithPagination; export type UpdateAccountScopedBannerErrorResponse = unknown; export interface UpdateAccountScopedBannerProps extends UpdateAccountScopedBannerMutationPathParams, Omit, 'url'> { body: UpdateAccountScopedBannerRequestBody; } export declare function updateAccountScopedBanner(props: UpdateAccountScopedBannerProps): Promise; /** * Updates the specified Banner in account scope */ export declare function useUpdateAccountScopedBannerMutation(options?: Omit, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult;