import TimeOfInterest from '../../time/TimeOfInterest';
import EventInterface from './EventInterface';
export default class LunarX implements EventInterface {
    private readonly toi;
    private coords;
    constructor(toi: TimeOfInterest);
    getStartTime(): Promise<TimeOfInterest>;
    getMaximum(): Promise<TimeOfInterest>;
    getEndTime(): Promise<TimeOfInterest>;
    private getTMax;
}
