import { TMap, SIZES } from '../types';
interface IMapInput {
    position?: number;
    geolocation: {
        lat: number;
        lng: number;
    };
    width?: SIZES;
    title?: string;
}
export declare const createMap: ({ geolocation, width, title, position, }: IMapInput) => TMap;
export {};
