import { HTMLElement } from "./HTMLElement";
/**
 * @private
 */
export declare class HTMLDocument {
    static document: HTMLDocument;
    all: {
        [key: string]: HTMLElement;
    };
    styleSheets: any;
    getElementById(id: string): HTMLElement;
    setElementById(id: string, e: HTMLElement): void;
}
