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