<KeyExport />

```tsx
import { useEmbeddedEthereumWallet } from "@openfort/react-native"

function SampleComponent() {
  const {// [!code focus]
    exportPrivateKey, // [!code focus]
  } = useEmbeddedEthereumWallet()// [!code focus]
  // ...
}
```

:::info
Private key export is available for both Ethereum wallets via `useEmbeddedEthereumWallet` and Solana wallets via `useEmbeddedSolanaWallet`.
:::
