import { type GitObject } from './object.ts'; export type Refs = Record; export declare const listRefs: (url: string) => Promise; export declare const HAVES = 256; export declare const havesFrom: (tips: readonly string[], held: (id: string) => Promise) => Promise; export declare const fetchPack: (url: string, wants: readonly string[], held: (id: string) => Promise, haves?: readonly string[]) => Promise>;