import type { Codec } from '../codec';
import { Address, Id } from '../fxs/common';
import { BigIntPr } from '../primitives';
import { TypeSymbols } from '../constants';
export declare class Output {
    readonly address: Address;
    readonly amount: BigIntPr;
    readonly assetId: Id;
    _type: TypeSymbols;
    constructor(address: Address, amount: BigIntPr, assetId: Id);
    static fromBytes(bytes: Uint8Array, codec: Codec): [Output, Uint8Array];
    toBytes(codec: Codec): Uint8Array;
}
//# sourceMappingURL=output.d.ts.map