import { Component } from 'react'; import { SettingProps, DpState } from './index.type'; interface SettingState { dpState: DpState; } export default class SettingScene extends Component { static defaultProps: { themeColor: string; cloudFunData: any[]; showSwitchLog: boolean; settingDps: any[]; isStatusMultichannel: boolean; logId: string; statusId: string; }; constructor(props: SettingProps); componentDidMount(): void; get sections(): { title: any; data: any; }[]; getDpPress: (cd: string, value: string | number, type: string) => void; _getValue: (code: string, value: string) => string; dpState: DpState; relayStatus: any; _handleItemValueChange: (code: string, value: boolean | number | string) => void; renderItem: ({ item }: any) => JSX.Element; render(): JSX.Element; } export {};