import { PressableProps, PressableStateCallbackType } from "react-native"; import { ReactNode } from "react"; //#region src/primitives/threadList/ThreadListNew.d.ts type ThreadListNewProps = Omit & { children: ReactNode | ((state: PressableStateCallbackType & { isActive: boolean; }) => ReactNode); }; declare const ThreadListNew: ({ children, accessibilityState, ...pressableProps }: ThreadListNewProps) => import("react").JSX.Element; //#endregion export { ThreadListNew, ThreadListNewProps }; //# sourceMappingURL=ThreadListNew.d.ts.map