export interface ConstantManager { addConstant: (key: K, label: string) => boolean deleteConstant: (key: K) => boolean getConstantValue: (key: K) => string getConstants: () => Record resetConstants: () => void }