/** * Key-value pair interface. */ export interface Pair { key: string; value: string; }