export type HederaSignature = Uint8Array | undefined;
export interface HederaSigner {
    getPublicKey(path: string): Promise<string>;
    signTransaction(transaction: Uint8Array): Promise<Uint8Array>;
}
export type HederaSignatureSdk = Uint8Array;
//# sourceMappingURL=signer.d.ts.map