import * as p_di from "../../../../interface/data.js"; export type ID_Value_Pair = [string, T]; export type Dictionary_As_Array = readonly ID_Value_Pair[]; export declare class Dictionary_Class implements p_di.Dictionary { private source; constructor(source: Dictionary_As_Array); readonly __dictionary = true; __get_raw(): readonly [string, T][]; }