import { UseMutationOptions } from '@tanstack/react-query'; import type { SecretResponseResponse } from '../responses/SecretResponseResponse'; import type { ResponseWithPagination } from '../helpers'; import { FetcherOptions } from '../../../../fetcher/index.js'; export interface DeleteAccountScopedSecretMutationPathParams { secret: string; } export interface DeleteAccountScopedSecretMutationHeaderParams { 'Harness-Account'?: string; } export type DeleteAccountScopedSecretOkResponse = ResponseWithPagination; export type DeleteAccountScopedSecretErrorResponse = unknown; export interface DeleteAccountScopedSecretProps extends DeleteAccountScopedSecretMutationPathParams, Omit, 'url'> { } export declare function deleteAccountScopedSecret(props: DeleteAccountScopedSecretProps): Promise; /** * Deletes the information of the secret with the matching secret identifier. */ export declare function useDeleteAccountScopedSecretMutation(options?: Omit, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult;