import type { IAuthenticateGeneric, ICredentialTestRequest, ICredentialType, INodeProperties } from 'n8n-workflow'; /** * VeChain Network Credentials * Supports multiple networks: Mainnet, Testnet, Thor Solo, and Custom nodes * * VeChain uses a dual-token model: * - VET: Value token for transactions * - VTHO: Energy token (gas) generated by holding VET */ export declare class VechainNetwork implements ICredentialType { name: string; displayName: string; documentationUrl: string; properties: INodeProperties[]; authenticate: IAuthenticateGeneric; test: ICredentialTestRequest; } //# sourceMappingURL=VechainNetwork.credentials.d.ts.map