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 GetAccountScopedSecretQueryPathParams { secret: string; } export interface GetAccountScopedSecretQueryHeaderParams { 'Harness-Account'?: string; } export type GetAccountScopedSecretOkResponse = ResponseWithPagination; export type GetAccountScopedSecretErrorResponse = unknown; export interface GetAccountScopedSecretProps extends GetAccountScopedSecretQueryPathParams, Omit, 'url'> { } export declare function getAccountScopedSecret(props: GetAccountScopedSecretProps): Promise; /** * Retrieves the information of the secret. */ export declare function useGetAccountScopedSecretQuery(props: GetAccountScopedSecretProps, options?: Omit, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult;