import CryptoManager from './assets/crypto/crypto'; import JWTManager from './assets/jwt/jwt'; import Passwords from './assets/passwords/passwords'; import ConfigManager from './assets/config/config'; /** * AuthCrypto is the main entry point for the AuthCrypto package. * It provides access to crypto utilities, JWT handling, and password management. */ declare class AuthCrypto { #private; constructor(); /**Crypto utilities for hashing and other cryptographic operations. */ get crypto(): CryptoManager; /**JWT handling utilities for encoding and decoding JSON Web Tokens. */ get jwt(): JWTManager; /**Password management utilities for generating and verifying passwords. */ get passwords(): Passwords; /**Configuration management utilities. */ get config(): ConfigManager; } /** * authCrypto is the main entry point for the AuthCrypto package. * It provides access to crypto utilities, JWT handling, and password management. */ declare const authCrypto: AuthCrypto; export default authCrypto;