import { UseQueryOptions } from '@tanstack/react-query'; import type { GithubPackagesResponse } from '../schemas/GithubPackagesResponse'; import type { ResponseWithPagination } from '../helpers'; import { FetcherOptions } from '../../../../fetcher/index.js'; export interface GetOrgScopedGithubPackagesQueryPathParams { org: string; } export interface GetOrgScopedGithubPackagesQueryQueryParams { connector_ref?: string; package_type: string; github_org?: string; } export interface GetOrgScopedGithubPackagesQueryHeaderParams { 'Harness-Account'?: string; } export type GetOrgScopedGithubPackagesOkResponse = ResponseWithPagination; export type GetOrgScopedGithubPackagesErrorResponse = unknown; export interface GetOrgScopedGithubPackagesProps extends GetOrgScopedGithubPackagesQueryPathParams, Omit, 'url'> { queryParams: GetOrgScopedGithubPackagesQueryQueryParams; } export declare function getOrgScopedGithubPackages(props: GetOrgScopedGithubPackagesProps): Promise; /** * Retrieves package details for GitHub Packages at organization scope */ export declare function useGetOrgScopedGithubPackagesQuery(props: GetOrgScopedGithubPackagesProps, options?: Omit, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult;