import type { KakaoMapRoute, KakaoMapScheme } from './types'; type KakaoMapAction = 'open' | 'look' | 'place' | 'search' | 'route' | 'roadView'; type MobileWebProtocol = 'http' | 'https'; export declare function kakaoMapUrl(action: KakaoMapAction, params?: Record, scheme?: KakaoMapScheme, mobileWebProtocol?: MobileWebProtocol): string; export declare function assertSupportedRoute(payload: KakaoMapRoute): void; export {};