import { Child } from "./components"; export interface JaideeUIOptions { title?: string; noSidebar?: boolean; } export declare class JaideePage { root: HTMLElement | null; query: any; params: any; data: any; constructor(rootId?: string); create(options?: JaideeUIOptions): this; addActionButton(text: string, props: any): this; appendChild(component: Child): this; setInnerHtml(html: string): this; setPageTitle(title: string): this; setPageSubTitle(subTitle: string): this; setTitle(title: string): this; get(id: string): JaideePage; use(id: string): JaideePage; render(): HTMLElement | null; }