import type { ObjectOf } from "../Types"; declare class Repository { /** All configuration items */ protected items: ObjectOf; constructor(items: ObjectOf); /** * Determine if the given configuration value exists. */ has(key: string): boolean; /** * Get the specified configuration value. */ get(key?: string, defaultValue?: T): T; /** * Get all of the configuration items for the application. */ all(): ObjectOf; /** * Set a given configuration value. */ set(key: string, value: any | null): void; } export default Repository;