import type { PropertiesMap } from './interfaces'; export interface PropertyRegistry { get(token: string): string | undefined; } export declare class AllPropertyRegistry implements PropertyRegistry { map: Record; constructor(propertiesMap: PropertiesMap); get(token: string): string; } export declare class UsedPropertyRegistry implements PropertyRegistry { map: Record; used: string[]; constructor(propertiesMap: PropertiesMap, used: string[]); get(token: string): string | undefined; }