import { EthService } from './services/eth'; import { SolService } from './services/sol'; import { AtomService } from './services/atom'; import { AccountService } from './services/accounts'; import { AdaService } from './services/ada'; import { NearService } from './services/near'; import { DotService } from './services/dot'; import { XtzService } from './services/xtz'; import { MaticService } from './services/matic'; type Config = { apiToken: string; testnet?: boolean; }; export declare const KILN_VALIDATORS: { ADA: { mainnet: { KILN0: string; KILN1: string; KILN2: string; KILN3: string; }; preprod: { KILN: string; }; }; ATOM: { mainnet: { KILN: string; KILN_BETA: string; }; }; DOT: { mainnet: { KILN: string; KILN_NOMINATION_POOL_ID: string; }; }; MATIC: { mainnet: { KILN_OWNEST: string; }; }; NEAR: { mainnet: { KILN: string; KILN1: string; }; testnet: { KILN: string; }; }; SOL: { mainnet: { KILN: string; }; devnet: { KILN: string; }; }; XTZ: { mainnet: { KILN: string; }; testnet: { KILN: string; }; }; }; export declare class Kiln { eth: EthService; sol: SolService; accounts: AccountService; atom: AtomService; ada: AdaService; near: NearService; dot: DotService; xtz: XtzService; matic: MaticService; constructor({ testnet, apiToken }: Config); } export {};