import { UseQueryOptions } from '@tanstack/react-query'; import type { GithubPackageVersionsResponse } from '../schemas/GithubPackageVersionsResponse'; import type { ResponseWithPagination } from '../helpers'; import { FetcherOptions } from '../../../../fetcher/index.js'; export interface GetOrgScopedGithubPackagesVersionsQueryPathParams { org: string; } export interface GetOrgScopedGithubPackagesVersionsQueryQueryParams { connector_ref: string; package_name: string; package_type: string; github_org?: string; version_regex?: string; } export interface GetOrgScopedGithubPackagesVersionsQueryHeaderParams { 'Harness-Account'?: string; } export type GetOrgScopedGithubPackagesVersionsOkResponse = ResponseWithPagination; export type GetOrgScopedGithubPackagesVersionsErrorResponse = unknown; export interface GetOrgScopedGithubPackagesVersionsProps extends GetOrgScopedGithubPackagesVersionsQueryPathParams, Omit, 'url'> { queryParams: GetOrgScopedGithubPackagesVersionsQueryQueryParams; } export declare function getOrgScopedGithubPackagesVersions(props: GetOrgScopedGithubPackagesVersionsProps): Promise; /** * Retrieves versions from GitHub packages at organization scope */ export declare function useGetOrgScopedGithubPackagesVersionsQuery(props: GetOrgScopedGithubPackagesVersionsProps, options?: Omit, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult;