import React from "react"; export interface EventChatTypeOption { value: string; label: string; } export interface EventChatTypePickerProps { options: EventChatTypeOption[]; selectedId?: string; isLoading?: boolean; onConfirm: (typeId: string, typeLabel: string) => void; openListLabel?: string; changeLabel?: string; zIndex?: number; defaultOpen?: boolean; } declare const EventChatTypePicker: React.FC; export default EventChatTypePicker;