import { Program } from "@project-serum/anchor"; import { PublicKey, TransactionInstruction } from "@solana/web3.js"; import { Cronos } from "../idl"; import { Account } from "../account"; export declare type DaemonCreateArgs = { owner: PublicKey; }; export declare class DaemonCreate { private account; private cronos; constructor(account: Account, cronos: Program); daemonCreate({ owner, }: DaemonCreateArgs): Promise; }