export declare const INROUTE_SCHEME = "inroute://"; export type InRouteQueryValue = string | number | boolean | null | undefined; export type InRouteQueryEntry = readonly [string, InRouteQueryValue, { raw?: boolean; }?]; export type InRouteGeo = string; export interface InRouteReturnPayload { /** * URL scheme for the sending app, serialized as the documented `back_url` parameter. * * @example 'myapp://' */ backUrl?: string; } export declare function inRouteUrl(action: string, entries: readonly InRouteQueryEntry[]): string; export declare function inRouteQuery(entries: readonly InRouteQueryEntry[]): string; export declare function inRouteLocationPart(value: string | number): string;