import type { DbAdapter } from "../adapter.ts"; import type { ExclusiveRange } from "./types.ts"; import { Canonical } from "./types.ts"; export type { ExclusiveRange }; /** * Fetches the canonical name of the subtype for given range OIDs, ordered by sequence. */ export declare function getRangeDetails(db: DbAdapter, enqueue: (types: string) => Canonical, entries: { oid: number; canonical_name: string; }[]): Promise;