/** * Tracks how many times a component has rendered. * * Example: * const count = useRenderCount(); * return
Rendered {count} times
; */ export declare function useRenderCount(): number;