import React from 'react'; export interface EntitySelectorProps { type: 'organization' | 'store' | 'warehouse'; value?: string; onChange: (value: string) => void; placeholder?: string; className?: string; organizationId?: string; } export declare const EntitySelector: React.FC;