import type { YandexMapsAppLayer, YandexMapsAppMapParameters, YandexMapsWebMapParameters } from './types'; export declare function yandexMapsAppMapUrl(params?: Record): string; export declare function yandexMapsAppRootUrl(params: Record): string; export declare function yandexMapsWebUrl(params?: Record): string; export declare function yandexMapsWebOrganizationUrl(oid: number | string): string; export declare function yandexMapsAppMapParams(payload: YandexMapsAppMapParameters): { ll: string | undefined; z: string | number | undefined; spn: string | undefined; l: string | readonly YandexMapsAppLayer[] | undefined; }; export declare function yandexMapsWebMapParams(payload: YandexMapsWebMapParameters): { ll: string | undefined; z: string | number | undefined; spn: string | undefined; l: string | readonly YandexMapsAppLayer[] | undefined; };