import IClient from './http/IClient'; import { GatewayFactory } from './GatewayFactory'; import AbstractGateway from './AbstractGateway'; export default class Omnipay { static _client: IClient; static _factory: GatewayFactory; static client: IClient; static readonly factory: GatewayFactory; static create(name: string): T; register(): void; }