import React, { PropsWithChildren } from "react";
import { iKWIZFluentContext } from "./context-const";
export type { iKWIZFluentContext } from "./context-const";
export declare const useStaticStyles: () => void;
/** @deprecated - use KWIZFluentProvider instead of using this + DragDropContextProvider */
export declare function useKWIZFluentContextProvider(options: {
    root?: React.MutableRefObject<HTMLDivElement>;
    ctx?: iKWIZFluentContext;
}): {
    KWIZFluentContext: React.Context<iKWIZFluentContext>;
    value: iKWIZFluentContext;
};
export declare const KWIZFluentProvider: (props: PropsWithChildren<{
    ctx?: iKWIZFluentContext;
}>) => import("react/jsx-runtime").JSX.Element;
