/** * Utility functions for Coinbase CDP resources */ /** * Validates that a CDP account name follows the required format. * CDP only allows letters, numbers, and hyphens in account names. * Names cannot start or end with a hyphen. * * @param name - The account name to validate * @throws Error if the name contains invalid characters or starts/ends with hyphen */ export declare function validateAccountName(name: string): void; //# sourceMappingURL=utils.d.ts.map