import { WithLinkProp } from '../components/OnyxRouterLink/types.js'; /** * Extracts the link props from the given data and unifies them into an object if its a string link. */ export declare const extractLinkProps: (link: NonNullable) => import('../components/OnyxRouterLink/types.js').SharedLinkProps; /** * Checks whether the given link is internal / a relative link of the current application. */ export declare const isInternalLink: (href: string) => boolean;