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