type KnownEntityType = "person" | "organization" | "supplier" | "booking" | "product"; export interface EntityRefPickerMessages { entityTypeLabel: string; entityLabel: string; customEntityTypeLabel: string; typePlaceholder: string; entityPlaceholder: string; entityTypeLabels: Record; } export interface EntityRefPickerProps { entityType: string; entityId: string; onChange: (scope: { entityType: string; entityId: string; }) => void; messages: EntityRefPickerMessages; } export declare function EntityRefPicker({ entityType, entityId, onChange, messages, }: EntityRefPickerProps): import("react").JSX.Element; export {};