UNPKG

bigblocks

Version:

Complete Bitcoin UI component library - authentication, social, wallet, market, inscriptions, and blockchain interactions for React

10 lines 485 B
import type { OAuthProvider } from "../../lib/types.js"; export interface OAuthRestoreFormProps { provider: OAuthProvider; encryptedBackup: string; onSuccess: (decryptedBackup: string) => void; onError?: (error: Error) => void; className?: string; } export declare function OAuthRestoreForm({ provider, encryptedBackup, onSuccess, onError, className, }: OAuthRestoreFormProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=OAuthRestoreForm.d.ts.map