/** * Flowtype definitions for attribution-control * Generated by Flowgen from a Typescript Definition * Flowgen v1.21.0 */ import { Element } from "react"; import { MapControlProps } from "./use-map-control"; export type AttributionControlProps = { ...MapControlProps, ...$Rest< { toggleLabel: string, className: string, style: Object, compact: boolean, customAttribution: string | [string], ... }, { ... } >, }; declare export default function AttributionControl( props: AttributionControlProps ): Element;