import type { FourCreateWithBundleBuyMerkleResult, FourSignConfig } from '../types/index.js'; import { type OpenFourInitParams, type OpenFourTemplateConfig } from '../../../domains/openfour/index.js'; export type OpenFourCreateSignParams = { privateKeys: string[]; tokenInfo: { name: string; symbol: string; description: string; imageUrl?: string; imageFile?: Blob; webUrl?: string; twitterUrl?: string; telegramUrl?: string; preSale?: string; feePlan?: boolean; templateId: number | string; quoteSymbol: string; templateConfig: OpenFourTemplateConfig; initParams: OpenFourInitParams; }; config: FourSignConfig; }; export declare function createOpenFourTokenMerkle(params: OpenFourCreateSignParams): Promise;