// @flow /** * Flowtype definitions for proposal * Generated by Flowgen from a Typescript Definition * Flowgen v1.5.8 * Author: [Joar Wilk](http://twitter.com/joarwilk) * Repo: http://github.com/joarwilk/flowgen */ import { MetricsDTO } from "./metrics-dto"; import { ServiceDefinitionDTO } from "./service-definition"; export interface ProposalDTO { id: number; providerId: string; serviceType: string; serviceDefinition: ServiceDefinitionDTO; metrics?: MetricsDTO; } declare export function parseProposalDTO(data: any): ProposalDTO;