UNPKG

agora-meeting-sdk

Version:

For publishing npm package agora-metting-sdk (Web). Get more information from https://docs.agora.io

11 lines (10 loc) 337 B
/// <reference types="react" /> import { BaseProps } from '../interface/base-props'; export interface CheckBoxProps extends BaseProps { checked?: boolean; onClick?: (evt: any) => any; onChange?: (evt: any) => any; indeterminate?: boolean; className?: string; } export declare const CheckBox: React.FC<CheckBoxProps>;