import { Component } from 'react'; import { HomeIconI } from '../definition/common'; import 'antd/es/input/style/css'; import 'antd/es/switch/style/css'; import 'antd/es/input-number/style/css'; interface Iprops { title: string; background: string; homeIcon: HomeIconI; onTitleChange: (value: string) => void; onBackgroundChange: (value: string) => void; onIconChange: (value: any) => void; } export default class PageEditor extends Component { onTitleChange: (event: any) => void; onBackgroundChange: (value: any) => void; onChangeIcon: (value: any) => void; onSwitchChange: (value: any) => void; onInputChange: (value: any, key: string) => void; render(): JSX.Element; } export {};