import { RaftTypeE } from "./raft"; export type RobotSelectionModalResult = RaftTypeE.MARTY | RaftTypeE.COG | false; export type CogVerificationModalResult = { action: "cancel"; } | { action: "led"; } | { action: "qr"; uuids: string[]; } | { action: "switch-to-marty"; };