// @flow /** * Flowtype definitions for nat-status-dto * Generated by Flowgen from a Typescript Definition * Flowgen v1.5.8 * Author: [Joar Wilk](http://twitter.com/joarwilk) * Repo: http://github.com/joarwilk/flowgen */ export interface NatStatusDTO { status: string; error?: string; } declare export function parseNatStatusResponse(data: any): NatStatusDTO;