import React from 'react'; import { Organization } from '../../types'; interface OrganizationListProps { onSelect?: (organization: Organization) => void; onCreateClick?: () => void; showCreateButton?: boolean; } export declare const OrganizationList: React.FC; export {};