import { Canonical, type ExclusiveDomain } from "./types.ts"; import type { DbAdapter } from "../adapter.ts"; export type { ExclusiveDomain }; /** * Fetches the canonical name of the ultimate base type for a given domain OID * in a single query. If the OID is not a domain, it returns the name of the * type corresponding to the original OID. */ export declare function getDomainDetails(db: DbAdapter, enqueue: (types: string) => Canonical, entries: { oid: number; canonical_name: string; }[]): Promise;