import "./UICoreExtensions";
import { UILanguageService } from "./UIInterfaces";
import { UIObject } from "./UIObject";
import { UIViewController } from "./UIViewController";
export declare class UICore extends UIObject {
    paddingLength: number;
    rootViewController: UIViewController;
    static RootViewControllerClass: typeof UIViewController;
    static main: UICore;
    static languageService: UILanguageService;
    static readonly broadcastEventName: {
        RouteDidChange: string;
        WindowDidResize: string;
    };
    constructor(rootDivElementID: string, rootViewControllerClass: typeof UIViewController, paddingLength?: number);
}
