// @flow /** * Flowtype definitions for public-key * 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 PublicKeyDTO { part1: string; part2: string; } declare export function parsePublicKeyDTO(data: any): PublicKeyDTO;