import { StoreState } from "../../../Store"; export declare namespace State { interface _Data { siteId: string; prjVersion: string; productKey: string; product: string; mqxVersion: string; atxVersion: string; sslVersion: string; webVersion: string; mfg: string; user: string; mac: string; sid: string; policies: number[] | number; } interface Data extends _Data { policies: number[]; } interface DataServer extends _Data { policies: number; } interface ServerResponse { about: DataServer; } interface Props extends StoreState { } }