/**
 * Validates if an address is a standard Ethereum address (0x01 withdrawal credentials)
 */
export declare function isStandardAddress(address: string): boolean;
/**
 * Validates if an address uses compounding withdrawal credentials (0x02)
 */
export declare function isCompoundingAddress(address: string): boolean;
