/**
 * Flowtype definitions for style-utils
 * Generated by Flowgen from a Typescript Definition
 * Flowgen v1.21.0
 */

declare type MapboxStyle =
  | string
  | {
      toJS?: Function,
      layers: Array<any>,
      ...
    };
declare export function normalizeStyle(style?: MapboxStyle): null | MapboxStyle;
