import { type ReactNode } from "react"; import { type IMenuButtonConfiguration } from "../topBar/menuButton/types.js"; interface IDashboardConfigContext { menuButtonConfig: IMenuButtonConfiguration | undefined; children?: ReactNode; } /** * Context for all the dashboard level configuration of the presentation components. * @alpha */ export declare const useDashboardConfigContext: () => IDashboardConfigContext; /** * @internal */ export declare function DashboardConfigProvider({ children, ...components }: IDashboardConfigContext): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=DashboardConfigContext.d.ts.map