import { type ReactNode } from "react"; import { type ScreenSize } from "@gooddata/sdk-model"; export interface IDashboardSizeContextProps { children: ReactNode; } export declare function DashboardScreenSizeProvider({ children }: IDashboardSizeContextProps): import("react/jsx-runtime").JSX.Element; /** * Return current screen size. */ export declare const useScreenSize: () => ScreenSize; //# sourceMappingURL=DashboardScreenSizeContext.d.ts.map