export type TLinkifyProtocol = "http" | "https" | "mailto"; export type TLinkifyOptions = Readonly<{ protocols?: readonly TLinkifyProtocol[]; allowRelative?: boolean; maxUrlLength?: number; }>; export type TLinkifySegment = Readonly<{ text: string; href?: string; }>; export declare function linkifyTextSegments(text: string, options?: TLinkifyOptions): readonly TLinkifySegment[];