import type { WebViewProps } from "react-native-webview"; export declare function connectionProps({ port, bundleDirName, path, }: { /** * The port that the web app's dev server serves on. */ port: number; /** * The directory to copy the contents of webOutputDir into. Directories with * slashes will be interpreted as a nested path. * * - In debug mode, this has no effect. * - In release mode, this affects the file path the URL should load the * bundled app from. * * @default "web" * @example "nested/path/to/web" */ bundleDirName?: string; /** * The path making up the URI by which to connect to the dev server. * @default "/index.html" * @example If the base URL were "http://127.0.0.1:3000", specifying a value * of "/index.html" would yield "http://127.0.0.1:3000/index.html". */ path?: string; }): Pick | { allowFileAccessFromFileURLs: boolean; originWhitelist: string[]; allowingReadAccessToURL: string; source: { uri: string; }; }; //# sourceMappingURL=connectionProps.d.ts.map