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