import { Atom } from "@nova-ui/bits/sdk/atoms"; import { WidgetAtom } from "./widget.atom"; export declare class DashboardAtom extends Atom { static CSS_CLASS: string; private root; getWidgetByIndex: (index: number) => WidgetAtom; getWidgetById: (id: string) => WidgetAtom; getWidgetByHeaderTitleText(text: string, isSubstring?: boolean): Promise; }