export declare function useMercure<T = unknown>(url: string | URL, topic: string[]): {
    data: T | undefined;
    isConnected: boolean;
};
