import { type ReactNode } from "react"; import type { IKdaState } from "../internalTypes.js"; type KdaStateContextType = { state: IKdaState; setState: (newState: Partial) => void; }; export declare function KdaStateProvider({ children, value }: { children: ReactNode; value?: Partial; }): import("react/jsx-runtime").JSX.Element; export declare function useKdaState(): KdaStateContextType; export {}; //# sourceMappingURL=KdaState.d.ts.map