import { type Client, type ClientOptions } from 'openapi-fetch'; import { FireblocksService } from './fireblocks.js'; import type { paths } from './openapi/schema.js'; export * from './validators.js'; export * from './openapi/schema.js'; export * from './utils.js'; export type { FireblocksIntegration } from './fireblocks.js'; export type { FireblocksAssetId } from './fireblocks_signer.js'; type Config = { baseUrl: string; apiToken?: string; clientOptions?: ClientOptions; }; export declare class Kiln { fireblocks: FireblocksService; client: Client; constructor({ apiToken, baseUrl, clientOptions }: Config); } //# sourceMappingURL=kiln.d.ts.map