import * as React from 'react'; interface PaddingOptions { top: number; bottom: number; left: number; right: number; } interface Props { width?: string; height?: string; mapStyleUrl?: string; showCountryLayer?: boolean; padding?: PaddingOptions; } export default function SimpleMap({ width, height, mapStyleUrl, padding, }: Props): React.JSX.Element; export {}; //# sourceMappingURL=SimpleMap.d.ts.map