import { UseQueryOptions } from '@tanstack/react-query'; import type { SecretResponseResponse } from '../responses/SecretResponseResponse'; import type { ResponseWithPagination } from '../helpers'; import { FetcherOptions } from '../../../../fetcher/index.js'; export interface GetProjectScopedSecretQueryPathParams { org: string; project: string; secret: string; } export interface GetProjectScopedSecretQueryHeaderParams { 'Harness-Account'?: string; } export type GetProjectScopedSecretOkResponse = ResponseWithPagination; export type GetProjectScopedSecretErrorResponse = unknown; export interface GetProjectScopedSecretProps extends GetProjectScopedSecretQueryPathParams, Omit, 'url'> { } export declare function getProjectScopedSecret(props: GetProjectScopedSecretProps): Promise; /** * Retrieves the information of the secret. */ export declare function useGetProjectScopedSecretQuery(props: GetProjectScopedSecretProps, options?: Omit, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult;