/** * Internal testing utilities. * Provides helpers for SDK tests and examples that need known-active wallets. */ /** * Returns an active Polymarket wallet address for testing. * Attempts to fetch a currently top-ranked trader; falls back to a known-good address. * * @param opts.fresh - If true, always fetches live data. Otherwise may return cached/fallback. * @returns A wallet address string guaranteed to have recent trading activity. */ export declare function getActiveTestWallet(opts?: { fresh?: boolean; }): Promise; /** * Returns multiple active Polymarket wallets for testing. * * @param count Number of wallets to return (default: 5, max: 20) * @param opts.fresh - If true, fetches live data. */ export declare function getActiveTestWallets(count?: number, opts?: { fresh?: boolean; }): Promise; //# sourceMappingURL=testing.d.ts.map