react-19-kit
Version:
Ready-to-use Chat UI Components for React(Javascript/Web)
15 lines (14 loc) • 415 B
TypeScript
interface RadioButtonProps {
checked?: boolean;
name?: string;
labelText?: string;
disabled?: boolean;
id?: string;
onRadioButtonChanged?: (input: {
checked: boolean;
labelText: string | undefined;
id: string;
}) => void;
}
declare const CometChatRadioButton: (props: RadioButtonProps) => import("react/jsx-runtime").JSX.Element;
export { CometChatRadioButton };