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