import React from "react";
/**
* A basic UI component for passkey authentication in React Native apps.
*
* This component provides a simple sign-up and log-in interface using passkeys.
* It's designed for quick prototyping and can be customized or replaced with
* your own authentication UI.
*
* @example
* ```tsx
* import { PasskeyAuthBasicUI } from "jazz-tools/react-native-core";
*
* function App() {
* return (
*
*
*
*
*
* );
* }
* ```
*
* @category Auth Providers
*/
export declare const PasskeyAuthBasicUI: ({ appName, rpId, children, }: {
appName: string;
rpId: string;
children: React.ReactNode;
}) => string | number | bigint | boolean | Iterable | Promise> | Iterable | null | undefined> | import("react/jsx-runtime").JSX.Element | null | undefined;
//# sourceMappingURL=PasskeyAuthBasicUI.d.ts.map