@gamesberry/karmyc-core
Version:
A flexible and powerful layout management system for React applications
14 lines (13 loc) • 430 B
TypeScript
import React from 'react';
import { IKarmycOptions } from '../core/types/karmyc';
interface KarmycNextWrapperProps {
isClient: boolean;
children: React.ReactNode;
config: IKarmycOptions;
}
/**
* Next.js-specific wrapper ensuring React hooks are used in the
* right context and avoiding hydration errors.
*/
export declare const KarmycNextWrapper: React.FC<KarmycNextWrapperProps>;
export default KarmycNextWrapper;