/**
* A simple utility hook that returns true only on the initial render of a component.
* Returns false for all subsequent renders.
*
* @returns {boolean} True if it's the first render, false otherwise.
*/exportdeclareconstuseIsFirstRender: () =>boolean;