import { ConfigurationOptions } from "@fireblocks/ts-sdk";
import { FireblocksSigner } from "./fireblocksSigner";
export type BatchSignatureRequest = {
    signer: FireblocksSigner;
    hash: Buffer;
};
export type BatchSignatureResponse = BatchSignatureRequest & {
    signature: Buffer;
};
export type AssetId = "BTC" | "BTC_TEST";
export type FireblocksConfig = ConfigurationOptions;
//# sourceMappingURL=types.d.ts.map