/** @packageDocumentation * @module Widget */ import "./ContentRenderer.scss"; import * as React from "react"; import { TabState } from "../base/NineZoneState"; /** @internal */ export declare const WidgetContentRenderers: React.NamedExoticComponent; interface WidgetContentRendererProps { children?: React.ReactNode; renderTo: Element | null | undefined; tabId: TabState["id"]; } /** @internal */ export declare const WidgetContentRenderer: React.NamedExoticComponent; /** @internal */ export declare const TabIdContext: React.Context; /** @internal */ export declare function useTabTransientState(tabId: string, onSave?: () => void, onRestore?: () => void): void; /** @internal */ export declare function useTransientState(onSave?: () => void, onRestore?: () => void): void; export {}; //# sourceMappingURL=ContentRenderer.d.ts.map