import { ConfigurationProperties } from '@zetapush/core'; export declare class PriorizedConfigurationProperties implements ConfigurationProperties { private delegates; constructor(...delegates: ConfigurationProperties[]); has(key: string): boolean; get(key: string): T | null; get(key: string, defaultValue: T): T; getOrThrow(key: string, error?: E): T; }