export interface LocationProps { lat?: string; lng?: string; location?: string; zoom?: number; } export declare const Location: ({ lat, lng, location, zoom }: LocationProps) => JSX.Element;