import type { ColorValue, StyleProp, TextStyle } from 'react-native'; import { TextProps } from './Text'; export type HighTextProps = Omit & { keyword: string; content: string; highColors?: ColorValue[]; textColors?: ColorValue[]; containerStyle?: StyleProp; numberOfLines?: number | undefined; }; /** * Highlight keywords. * * **Note** Exceeding the width is not considered. */ export declare function HighText(props: HighTextProps): import("react/jsx-runtime").JSX.Element; export declare function useHighText(props: HighTextProps): { getContent: () => (import("react/jsx-runtime").JSX.Element | null)[]; }; export declare function useHighText2(props: HighTextProps): { getContent: () => import("react/jsx-runtime").JSX.Element[]; }; //# sourceMappingURL=HighText.d.ts.map