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 DeleteOrgScopedSecretMutationPathParams { org: string; secret: string; } export interface DeleteOrgScopedSecretMutationHeaderParams { 'Harness-Account'?: string; } export type DeleteOrgScopedSecretOkResponse = ResponseWithPagination; export type DeleteOrgScopedSecretErrorResponse = unknown; export interface DeleteOrgScopedSecretProps extends DeleteOrgScopedSecretMutationPathParams, Omit, 'url'> { } export declare function deleteOrgScopedSecret(props: DeleteOrgScopedSecretProps): Promise; /** * Deletes the information of the secret with the matching secret identifier. */ export declare function useDeleteOrgScopedSecretMutation(options?: Omit, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult;