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