react-19-kit
Version:
Ready-to-use Chat UI Components for React(Javascript/Web)
11 lines (10 loc) • 355 B
TypeScript
interface ChangeScopeProps {
title?: string;
buttonText?: string;
options: string[];
defaultSelection?: string;
onScopeChanged?: (scope: string) => Promise<void>;
onCloseClick?: () => void;
}
declare const CometChatChangeScope: (props: ChangeScopeProps) => import("react/jsx-runtime").JSX.Element;
export { CometChatChangeScope };