import { wallet } from "./interfaces";
import { Keypair } from "./types";
export declare const TEST_WALLETS: wallet[];
export interface Account {
    signer: Keypair;
    keyPair: Keypair;
    address: string;
    bankAccountId?: string;
}
export interface MakerTakerAccounts {
    maker: Account;
    taker: Account;
}
export declare function getTestAccounts(create?: boolean): Account[];
export declare function createAccount(): Account;
export declare function processTradingStartTime(tradingStartTime: number | string, env: string): number;
