import { now } from "@cronos-so/utils"; import { Provider } from "@project-serum/anchor"; import { Account } from "./account"; import { Instruction } from "./instruction"; export declare class Cronos { static DEVNET_PROGRAM_ID: string; static MAINNET_PROGRAM_ID: string; account: Account; instruction: Instruction; programId: string; constructor(provider: Provider, programId: string); } export * from "./types"; export { now };