import { Rune } from '../runes/runestone.dto'; export interface ScriptOutput { script: Buffer; value: bigint; runes: Array; } export interface AddressOutput { address: string; value: bigint; runes: Array; } export type Output = ScriptOutput | AddressOutput; export declare function isAddressOutput(output: Output): output is AddressOutput; export declare function isScriptOutput(output: Output): output is ScriptOutput;