import * as React from 'react';

declare interface BeaconProps {
    isMainBeacon?: boolean;
    beaconID: string;
    laneID: string;
    width?: number;
    height?: number;
}

export default class Beacon extends React.Component<BeaconProps> {}
