import { Configuration } from "./Configuration"; import { Gateway } from "./Gateway"; import { PaginatedArray } from "./util"; import * as types from "./types"; export declare class VerificationGateway { gateway: Gateway; config: Configuration; constructor(gateway: Gateway); search(filters?: { [key: string]: any; }): Promise>; all(filters?: { [key: string]: any; }): Promise>; expire(body: any): Promise>; trigger(verificationType: string, body: any): Promise>; triggerWatchlist(body: any): Promise>; trigger_watchlist(body: any): Promise>; }