import { ViewProps } from "react-native"; import { ReactNode } from "react"; //#region src/primitives/message/MessageRoot.d.ts type MessageRootProps = ViewProps & { children: ReactNode; }; declare const MessageRoot: ({ children, ...viewProps }: MessageRootProps) => import("react").JSX.Element; //#endregion export { MessageRoot, MessageRootProps }; //# sourceMappingURL=MessageRoot.d.ts.map