import { ComponentType } from 'react' interface SlotProps { /** 指定插入的 slot 位置 * @default none * @supported weapp, swan, alipay, tt, jd, qq */ name?: string, /** scoped slot 传入数据源 * @default none * @supported swan */ varName?: string } /** slot 插槽 * @supported weapp, swan, alipay, tt, jd, qq * @example * ```tsx * import { Slot, View, Text } from '@tarojs/components' * * export default class SlotView extends Component { * render () { * return ( * * * * Hello, world! * * * * ) * } * } * ``` */ declare const Slot: ComponentType export { Slot, SlotProps }