
type EolRecord = {
  cycle: string,
  releaseDate: string,
  eol: string,
  latest: string,
  latestReleaseDate: string,
  lts: boolean,
  support: string,
};

type Tool = {
  label: string,
  sync: string,
  min: EolRecord,
  recommended: EolRecord,
};

type FailoverConfig = {
  fileName: string,
  remoteUrl: string,
  tag: string,
  tools: Tool[],
}

declare const failover: FailoverConfig;
export default failover;
