import { Initializer } from "../index";
export interface SpecHelperApi {
    returnMetadata?: boolean;
    Server?: any;
    Connection?: any;
}
/**
 * A special "mock" server which enables you to test actions and tasks in a simple way.  Only available in the TEST environment.
 */
export declare class SpecHelper extends Initializer {
    enabled: boolean;
    constructor();
    initialize(): Promise<void>;
    start(): Promise<void>;
}
