import { TextProps } from "react-native"; import { ReactNode } from "react"; //#region src/primitives/suggestion/SuggestionTitle.d.ts type SuggestionTitleProps = TextProps & { children?: ReactNode; }; declare const SuggestionTitle: ({ children, ...textProps }: SuggestionTitleProps) => import("react").JSX.Element; //#endregion export { SuggestionTitle, SuggestionTitleProps }; //# sourceMappingURL=SuggestionTitle.d.ts.map