/**
 * Yours Wallet Connector Component
 *
 * Provides a complete UI for connecting to Yours Wallet with:
 * - Installation detection and prompts
 * - Connection management
 * - Error handling
 * - Loading states
 */
interface YoursWalletConnectorProps {
    onSuccess?: (result: {
        publicKey: string;
        idKey?: string;
        encryptedBackup?: string;
    }) => void;
    onError?: (error: string) => void;
    className?: string;
}
export declare function YoursWalletConnector({ onSuccess, onError, className, }: YoursWalletConnectorProps): import("react/jsx-runtime").JSX.Element;
export {};
//# sourceMappingURL=YoursWalletConnector.d.ts.map