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