/**
 * usePropDebugger
 * Logs prop changes between renders for debugging unnecessary re-renders.
 *
 * @param props - The props object to watch
 * @param label - Optional label for easier identification in logs
 *
 * Example:
 *   usePropDebugger(props, "MyComponent");
 */
export declare const usePropDebugger: (props: Record<string, any>, label?: string) => void;
