import React from 'react'; import './index.less'; import { DeviceProfileScene, DeviceTypeItem, DeviceModelItem, ProfileTemplateItem } from '../../types'; interface ProfileSettingState { record: ProfileTemplateItem; deviceModel?: DeviceModelItem; deviceType?: DeviceTypeItem; scene?: DeviceProfileScene; variant?: string; onBack: () => void; } declare const ProfileSetting: React.FC; export default ProfileSetting;