export type AptosCoinResourceDto = { symbol: string; balance: bigint; typeArg: string; }; export declare class AptosCoinResource { private _typeArg; private _balance; private _symbol; constructor(typeArg: string, balance: bigint); get typeArg(): string; get balance(): bigint; get symbol(): string; static fromDto(res: AptosCoinResourceDto): AptosCoinResource; toDto(): AptosCoinResourceDto; toString(): string; }