/**
* The root node of an application.
*/
export type RootNode = Document | ShadowRoot;
/**
* Class of the
that contains the entire application.
*/
export declare const APP_ROOT_CLASS = "pioneer-root";
export declare function isShadowRoot(node: RootNode): node is ShadowRoot;
export declare function isDocument(node: RootNode): node is Document;
/**
* Returns the parent node for