import { ComponentProps, ReactElement } from "react"; import { TextStyle } from "react-native"; import { Body } from "./Body"; export type BodyProps = ComponentProps & { text: string | ReactElement; }; type PropsComposedBody = { body: Array; textAlign?: TextStyle["textAlign"]; }; export declare const ComposedBodyFromArray: ({ body, textAlign }: PropsComposedBody) => import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=ComposedBodyFromArray.d.ts.map