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