import type { ColorValue, StyleProp, TextStyle } from 'react-native'; import { TextProps } from './Text'; export type HighUrlProps = Omit & { /** * A string that may contain multiple url keywords. */ content: string; urlColors?: ColorValue[]; textColors?: ColorValue[]; containerStyle?: StyleProp; urlStyle?: StyleProp; otherStyle?: StyleProp; numberOfLines?: number | undefined; onClicked?: (url: string) => void; }; export declare function HighUrl(props: HighUrlProps): import("react/jsx-runtime").JSX.Element; export declare function useHighUrl(props: HighUrlProps): { getContent: () => import("react/jsx-runtime").JSX.Element[]; }; //# sourceMappingURL=HighUrl.d.ts.map