/**
* Tracks the current screen whenever the component mounts (or deps change).
*
* ```tsx
* function ProductScreen({ productId }: { productId: string }) {
* useScreenTracking('Product', { product_id: productId });
* return ...;
* }
* ```
*/
export declare function useScreenTracking(screenName: string, properties?: Record, deps?: any[]): void;
//# sourceMappingURL=useScreenTracking.d.ts.map