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 GetAccountScopedGithubPackagesQueryQueryParams { connector_ref?: string; package_type: string; github_org?: string; } export interface GetAccountScopedGithubPackagesQueryHeaderParams { 'Harness-Account'?: string; } export type GetAccountScopedGithubPackagesOkResponse = ResponseWithPagination; export type GetAccountScopedGithubPackagesErrorResponse = unknown; export interface GetAccountScopedGithubPackagesProps extends Omit, 'url'> { queryParams: GetAccountScopedGithubPackagesQueryQueryParams; } export declare function getAccountScopedGithubPackages(props: GetAccountScopedGithubPackagesProps): Promise; /** * Retrieves package details for GitHub Packages at account scope */ export declare function useGetAccountScopedGithubPackagesQuery(props: GetAccountScopedGithubPackagesProps, options?: Omit, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult;