declare function saveRemoteSession({ remoteSessionId, apiKey }: {
    remoteSessionId: string;
    apiKey?: string;
}): void;
declare function getRemoteSession({ apiKey }: {
    apiKey?: string;
}): string | null;

export { getRemoteSession, saveRemoteSession };
