import { Pool } from './Pool'; import { Address, Cell } from '@ton/core'; import { PoolConfig } from './abi'; export declare class PoolV1 extends Pool { static readonly LIBRARY_HASH = 61382743034602341332768452802220232576078157789133949546395276842890385181750n; static fromAddress(poolAddress: Address): PoolV1; /** * @deprecated Use `PoolV2` instead. */ static fromConfig(config: PoolConfig): PoolV1; static createPoolCode(): Cell; }