import { BaseProps } from '../types'; interface WebExposeProps extends BaseProps { containerId: string; name: string; } interface WxExposeProps extends BaseProps { name: string; itemId: string; } export { WebExposeProps, WxExposeProps };