import { type Transport } from "../../client/types";
export declare const initRealtimeClient: ({ key, handleResponse, }?: {
    key?: string;
    handleResponse?: (response: Response) => boolean;
}) => Promise<void>;
export declare const realtimeTransport: ({ key, handleResponse, }: {
    key?: string;
    handleResponse?: (response: Response) => boolean;
}) => Transport;
