export declare abstract class AbstractBaseApplicationConfig { private title; private url; private author; getTitle(): string; getUrl(): string; getAuthor(): string; setTitle(title: string): void; setUrl(url: string): void; setAuthor(author: string): void; }