import { Program } from "@project-serum/anchor"; import { Cronos } from "../idl"; import { AuthorityGateway } from "./authority"; import { ConfigGateway } from "./config"; import { DaemonGateway } from "./daemon"; import { HealthGateway } from "./health"; import { FeeGateway } from "./fee"; import { TaskGateway } from "./task"; import { TreasuryGateway } from "./treasury"; export declare class Account { authority: AuthorityGateway; config: ConfigGateway; daemon: DaemonGateway; health: HealthGateway; fee: FeeGateway; task: TaskGateway; treasury: TreasuryGateway; constructor(cronos: Program); }