import * as p_di from "../../../interface/data.js"; export type Asynchronous_Dictionary_Builder = { 'add entry': (id: string, entry: Entry) => undefined; 'get dictionary': () => p_di.Dictionary; }; export default function (): Asynchronous_Dictionary_Builder;