import { default as React } from 'react'; export type SelectableOrganization = { id?: string; name: string; description?: string | null; logoId?: string | null; }; type Props = { organizations: T[] | null; selectedOrganization: T | null; disabled?: boolean; onChange: (selectedOrganization: T | null) => void; label?: string; placeholder?: string; getOrganizationLogoUrl: (orgId: string) => string; }; declare function AbyssSelectOrganization({ onChange, organizations, selectedOrganization, disabled, label, placeholder, getOrganizationLogoUrl, }: Props): React.ReactElement; export default AbyssSelectOrganization;