import { FunctionComponent } from 'react'

interface ShapeType {
  style: any
}
declare const Shape: FunctionComponent<ShapeType>

export { Shape, ShapeType }
