import APIClient from '../api-client'; import { ConnectApp } from '../types'; export interface TestAccountInfo { email: string; country: string; password: string; testUrl?: string; } /** * Find or create a test account and return the information. */ export declare function createOrFindTestAccounts(client: APIClient, platformApp: ConnectApp, supportedCountries: string[]): Promise;