import { ComponentType } from 'react'
import { StandardProps } from './common'
interface LabelProps extends StandardProps {
/** 绑定控件的 id
* @supported weapp, alipay, swan, tt, qq, jd, h5, harmony, harmony_hybrid
*/
for?: string
}
/** 用来改进表单组件的可用性。
*
* 使用for属性找到对应的id,或者将控件放在该标签下,当点击时,就会触发对应的控件。 for优先级高于内部控件,内部有多个控件的时候默认触发第一个控件。 目前可以绑定的控件有:button, checkbox, radio, switch。
* @classification forms
* @supported weapp, swan, alipay, tt, h5, rn, harmony, harmony_hybrid
* @example_react
* ```tsx
* class App extends Components {
*
* render () {
* return (
*
*
*
*
* )
* }
* }
* ```
* @example_vue
* ```html
*
*
*
*
*
*
* ```
* @see https://developers.weixin.qq.com/miniprogram/dev/component/label.html
*/
declare const Label: ComponentType
export { Label, LabelProps }