import { UseMutationOptions } from '@tanstack/react-query'; import type { BannerResponseResponse } from '../responses/BannerResponseResponse'; import type { CreateBannerRequestRequestBody } from '../requestBodies/CreateBannerRequestRequestBody'; import type { ResponseWithPagination } from '../helpers'; import { FetcherOptions } from '../../../../fetcher/index.js'; export interface CreateAccountScopedBannersMutationHeaderParams { 'Harness-Account'?: string; } export type CreateAccountScopedBannersRequestBody = CreateBannerRequestRequestBody; export type CreateAccountScopedBannersOkResponse = ResponseWithPagination; export type CreateAccountScopedBannersErrorResponse = unknown; export interface CreateAccountScopedBannersProps extends Omit, 'url'> { body: CreateAccountScopedBannersRequestBody; } export declare function createAccountScopedBanners(props: CreateAccountScopedBannersProps): Promise; /** * Creates a new Banner in Account Scope. */ export declare function useCreateAccountScopedBannersMutation(options?: Omit, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult;