import { LinkProps } from '../../../../types/vendored/editor-elements-definitions'; import { LinkUtils } from '../../../../types/vendored/link-utils'; export type PageList = Record; export declare const isPageUrl: (url: string) => boolean; export declare const isExternalPage: (url: string) => boolean; export declare const getLink: ({ link, target, linkUtils, }: { link?: string; target?: string; linkUtils: LinkUtils; }) => LinkProps; export declare const getLabel: ({ link, label, pageList, }: { link?: string; label?: string; pageList: PageList; }) => string | undefined;