import { StoreState } from "../../../Store"; export declare namespace State { interface Data { meth: METHOD; ip: string; sn: string; gw: string; } interface ServerResponse { ipConfig: Data; } type METHOD = "STATIC" | "DHCP"; interface Props extends StoreState { } }