import { Testing } from './index'; import { poolpair } from '@defichain/jellyfish-api-core'; /** * TestingFixture setup complex fixtures for jellyfish testing. */ export declare class TestingFixture { private readonly testing; constructor(testing: Testing); createPoolPair(options: TestingPoolPairCreateRequest): Promise; } export interface TestingPoolPairCreateRequest { a: { symbol: string; amount: string | number; }; b: { symbol: string; amount: string | number; }; } //# sourceMappingURL=fixture.d.ts.map