/** * Validation utilities for Aptos transactions */ /** * Validate module name format (throwing version) * * @param {string} moduleName - Module name to validate * @throws {Error} If module name format is invalid */ export declare function validateModuleName(moduleName: string): void; /** * Validate function name format (throwing version) * * @param {string} functionName - Function name to validate * @throws {Error} If function name format is invalid */ export declare function validateFunctionName(functionName: string): void; /** * Check if a module name matches the expected pattern (non-throwing version) * * @param {string} moduleName - Module name to check * @returns {boolean} True if valid, false otherwise */ export declare function isValidModuleName(moduleName: string): boolean; /** * Check if a function name matches the expected pattern (non-throwing version) * * @param {string} functionName - Function name to check * @returns {boolean} True if valid, false otherwise */ export declare function isValidFunctionName(functionName: string): boolean; //# sourceMappingURL=validation.d.ts.map