import { UseMutationOptions } from '@tanstack/react-query'; import type { ResponseWithPagination } from '../helpers'; import { FetcherOptions } from '../../../../fetcher/index.js'; export interface DeleteBrandingAssetMutationPathParams { type: string; } export interface DeleteBrandingAssetMutationHeaderParams { 'Harness-Account'?: string; } export type DeleteBrandingAssetOkResponse = ResponseWithPagination; export type DeleteBrandingAssetErrorResponse = unknown; export interface DeleteBrandingAssetProps extends DeleteBrandingAssetMutationPathParams, Omit, 'url'> { } export declare function deleteBrandingAsset(props: DeleteBrandingAssetProps): Promise; /** * Deletes a branding asset for account scope */ export declare function useDeleteBrandingAssetMutation(options?: Omit, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult;