interface EnvironmentInfo {
  isDocker: boolean;
  isCI: boolean;
}
export default function getEnvironmentInfo(): EnvironmentInfo;
export {};