import { Bento } from '../../Bento'; export declare class PropertyManager { private readonly bento; private readonly properties; constructor(bento: Bento); /** * Checks if a given property exists in bento * @param name property name * * @returns boolean */ hasProperty(name: string): boolean; /** * Fetch a value for given application property * @param name name of variable to get * * @returns Property value */ getProperty(name: string): any; /** * Update a given application property value * @param name name of variable to update * @param value new value */ setProperty(name: string, value: any): void; /** * Define multiple application properties at once * @param properties SetProperties object */ setProperties(properties: { [key: string]: any; }): void; }