import { CommMessageAction, CommOpenAction, RegisterCommTargetAction } from "@nteract/actions"; import { CommsRecord } from "@nteract/types"; declare type CommAction = RegisterCommTargetAction | CommMessageAction | CommOpenAction; declare const comms: (state: import("immutable").RecordOf | undefined, action: CommAction) => CommsRecord; export { comms };