import _DrawPlayground from './DrawPlayground'; import ControlDraw from './ControlDraw'; declare type _DrawPlaygroundType = typeof _DrawPlayground; interface DrawPlaygroundType extends _DrawPlaygroundType { ControlDraw: typeof ControlDraw; } declare const DrawPlayground: DrawPlaygroundType; export default DrawPlayground;