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 DeleteProjectScopedSecretMutationPathParams { org: string; project: string; secret: string; } export interface DeleteProjectScopedSecretMutationHeaderParams { 'Harness-Account'?: string; } export type DeleteProjectScopedSecretOkResponse = ResponseWithPagination; export type DeleteProjectScopedSecretErrorResponse = unknown; export interface DeleteProjectScopedSecretProps extends DeleteProjectScopedSecretMutationPathParams, Omit, 'url'> { } export declare function deleteProjectScopedSecret(props: DeleteProjectScopedSecretProps): Promise; /** * Deletes the information of the secret with the matching secret identifier. */ export declare function useDeleteProjectScopedSecretMutation(options?: Omit, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult;