export type VechainAddress = { publicKey: string; address: string; chainCode?: string; }; export type VechainSignature = Buffer; export interface VechainSigner { getAddress(path: string, boolDisplay?: boolean, chainCode?: boolean): Promise; signTransaction(path: string, rawTxHex: string): Promise; } //# sourceMappingURL=signer.d.ts.map