/** * usePerformance Hook * Performance monitoring and optimization (Folio service) */ import type { PerformanceMetrics, UsePerformanceOptions } from './types'; export declare function usePerformance(options?: UsePerformanceOptions): { metrics: PerformanceMetrics; recordMetric: (name: string, value: number) => void; recordInteraction: (interactionName: string, duration: number) => void; }; export declare function useMemoComputation(computation: () => T, dependencies: unknown[]): { result: T; computeTime: number; }; export type { UsePerformanceOptions } from './types'; //# sourceMappingURL=usePerformance.d.ts.map