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 GetOrgScopedSecretQueryPathParams { org: string; secret: string; } export interface GetOrgScopedSecretQueryHeaderParams { 'Harness-Account'?: string; } export type GetOrgScopedSecretOkResponse = ResponseWithPagination; export type GetOrgScopedSecretErrorResponse = unknown; export interface GetOrgScopedSecretProps extends GetOrgScopedSecretQueryPathParams, Omit, 'url'> { } export declare function getOrgScopedSecret(props: GetOrgScopedSecretProps): Promise; /** * Retrieves the information of the secret. */ export declare function useGetOrgScopedSecretQuery(props: GetOrgScopedSecretProps, options?: Omit, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult;