summaryrefslogtreecommitdiff
path: root/node_modules/pigeon-maps/lib/overlays/Overlay.d.ts
blob: 3949d2f640771673ddcc7291f911d66c23a2d17d (plain) (blame)
1
2
3
4
5
6
7
8
9
import React from 'react';
import { PigeonProps } from '../types';
interface OverlayProps extends PigeonProps {
    style?: React.CSSProperties;
    className?: string;
    children?: React.ReactNode;
}
export declare function Overlay(props: OverlayProps): JSX.Element;
export {};