/** Returns the number of times the component has been rendered * @example * function MyComponent() { * const renderCount = useRenderCount(); * return
Rendered {renderCount} times
; * } */ export declare function useRenderCount(): number;