import type { DocumentTitleOptions, LinkingOptions, NavigationContainerProps, Theme, } from "@react-navigation/native"; import React from "react"; import { NextComponentType, NextPageContext } from "next"; export { default as App } from "./App"; export type AppProps = { Component?: NextComponentType; children?: React.ReactNode; initialStore?: Record; navigationProps?: Omit & { theme?: Theme | undefined; linking?: LinkingOptions | undefined; fallback?: React.ReactNode; documentTitle?: DocumentTitleOptions | undefined; onReady?: (() => void) | undefined; }; pageProps?: any; prefetch?: any; router?: any; };