import type { IndexedOutput } from '@1sat/types'; import type { LegacyKeys } from '../types'; export interface LegacySendResult { txid: string; rawtx: string; } export declare function legacySendBsv(params: { funding: IndexedOutput[]; keys: LegacyKeys; destination: string; amount?: number; }): Promise; export declare function legacySendOrdinals(params: { ordinals: IndexedOutput[]; funding: IndexedOutput[]; keys: LegacyKeys; destination: string; }): Promise; export declare function legacyBurnOrdinals(params: { ordinals: IndexedOutput[]; funding: IndexedOutput[]; keys: LegacyKeys; }): Promise; //# sourceMappingURL=legacy-send.d.ts.map