import type { ClickPayload } from '../schemas'; declare type HrefQueryInputValues = { currentUser?: Record; currentLocation?: string; data?: any; }; export declare type HrefQueryInput = { href?: string; values?: HrefQueryInputValues; query?: Record; }; export declare const buildRef: ({ href, values, query }: HrefQueryInput) => string; export declare const stripDomain: (href?: string) => string | undefined; export declare const handleRef: (payload: ClickPayload, currentUser?: Record, data?: Record, shouldStripDomain?: boolean) => void; export {};