import { ILocation } from '.';
export interface ILocationInformations {
    from: ILocation | null;
    to: ILocation | null;
}
