import React, { FC } from "react"; import { IUseViewStateOptions, IViewState } from "../hooks/useViewState"; export type ILocalizeMethod = (key: string) => string; interface IMosaicContextOptions { breakpoints?: IUseViewStateOptions; localize?: ILocalizeMethod; } export interface IMosaicContext { localize?: ILocalizeMethod; view: IViewState; } export declare const MOSAIC_CONTEXT_DISPLAY_NAME = "MosaicContext"; export declare const MosaicContext: React.Context; export declare const MosaicContextProvider: FC; export {};