import React from 'react'; import { ActiveState } from './types.js'; type Props = { accessToken?: string; cookie?: string | null; activeProject: ActiveState; onComplete: (environment: ActiveState) => void; onError: (error: string) => void; }; declare const SelectEnvironment: React.FC; export default SelectEnvironment;