import { BIish } from "@ckb-lumos/bi"; import { OutPoint } from "@ckb-lumos/lumos"; import { CkbClient } from "./ckb_client"; import { CkbAccount } from "./ckb_account"; export declare class DaoClient { ckbClient: CkbClient; constructor(ckbClient: CkbClient); deposit(from: CkbAccount, to: string, amount: BIish, fee?: BIish): Promise; withdraw(from: CkbAccount, depositOutpoint: OutPoint, fee?: BIish): Promise; unlock(from: CkbAccount, to: string, depositOutpoint: OutPoint, withdrawOutpoint: OutPoint, fee?: BIish): Promise; } declare const _default: { DaoClient: typeof DaoClient; }; export default _default;