import type { YandexNavigatorAccessParameters, YandexNavigatorViaPoint } from './types'; export type YandexNavigatorActionPath = 'build_route_on_map' | 'map_search' | 'show_point_on_map'; export declare function yandexNavigatorUrl(actionPath?: YandexNavigatorActionPath, params?: Record): string; export declare function accessParams(payload: YandexNavigatorAccessParameters): { client: string | undefined; signature: string | undefined; }; export declare function viaPointParams(via: readonly YandexNavigatorViaPoint[] | undefined): Record;