import React from 'react'; import * as S from 'ufc-schema'; interface AddTenantDeviceProps { close?: () => void; refreshData?: () => void; } interface AddTenantDeviceState { deviceCode: string; iotGatewayId: string; gateways: S.UfGateway[]; loading: boolean; } export declare class AddTenantDevice extends React.PureComponent { constructor(props: AddTenantDeviceProps); componentDidMount(): Promise; commit: () => Promise; render(): JSX.Element; } export {};