/**
 * Flowtype definitions for index
 * Generated by Flowgen from a Typescript Definition
 * Flowgen v1.21.0
 * @flow
 */

import type { Metadata } from "../visual-parts";
export type Plugin = {|
  version: string,
  scriptURL: string,
  metadata: Metadata,
|};
declare export var merge: (plugins: Plugin[], plugin: Plugin) => Plugin[];
declare export var init: () => Plugin[];
declare export var validate: (plugins: any) => boolean;
