import { CheckpointType } from '../../checkpoint';
import { GameTrack } from '../../gameTrack';
export type SocketInitRaspberryInput = {
    macAddress: string;
    hostname: string;
};
export type SocketRegisterKartCheckpointInput = {
    macAddress: string;
    checkpointAddress: number;
    checkpointType: CheckpointType;
    shouldRequestPowerUp: boolean;
    originTimestampISO: string;
};
export type MacAddressGameTrackConnections = {
    connectedRaspberries: {
        macAddress: string;
    }[];
    gameTracks: GameTrack[];
};
