import React from 'react'; interface Iprops { ryu: (props: any) => void; type: number; goodsIds: string; shopId: number; padding: number; } declare type MyState = { goodsIds: string; }; export default class MallH5 extends React.Component { constructor(props: any); onChangeByKey: (key: any, v: any) => void; goodsIdsChange: () => void; onChange: (e: any) => void; render(): JSX.Element; } export {};