import type { Amounter } from '../../common/types'; import { BigIntPr } from '../../primitives'; import { Input } from './input'; import { TypeSymbols } from '../../constants'; export declare class TransferInput implements Amounter { private readonly amt; private readonly input; _type: TypeSymbols; constructor(amt: BigIntPr, input: Input); static fromBytes(bytes: Uint8Array): [TransferInput, Uint8Array]; static fromNative(amount: bigint, sigIndicies: number[]): TransferInput; sigIndicies(): number[]; amount(): bigint; toBytes(codec: any): Uint8Array; } //# sourceMappingURL=transferInput.d.ts.map