UNPKG

@droppii-org/chat-sdk

Version:

Droppii React Chat SDK

11 lines 537 B
import type { SelectSessionOption } from "./MessageHeader"; interface SelectSessionProps { options: SelectSessionOption[]; value: SelectSessionOption["value"]; onChange: (value: SelectSessionOption["value"]) => void; excludeOptions?: SelectSessionOption["value"][]; placeholder?: string; } declare const SelectSession: ({ options, value, onChange, excludeOptions, placeholder, }: SelectSessionProps) => import("react/jsx-runtime").JSX.Element; export default SelectSession; //# sourceMappingURL=SelectSession.d.ts.map