import { FC } from 'react'; export interface LifecycleObserverProps { enabled?: boolean; onMount?: (id: string) => void; onReady?: (id: string) => void; onUnmount?: (id: string) => void; } export declare const LifecycleObserver: FC;