import { ISandboxTestProviderOptions } from "@tandem/sandbox/test/helpers"; import { LogLevel, ServiceApplication } from "@tandem/common"; /** * creates a test master application that includes everything from the front-end * back-end, and workers. */ export interface IMasterTestAppicationOptions { log?: { level: LogLevel; }; typescript?: boolean; sandboxOptions?: ISandboxTestProviderOptions; createTestProviders?: () => any; } export declare const createTestMasterApplication: (options?: IMasterTestAppicationOptions) => ServiceApplication; export declare const createRandomFileName: (extension: string) => string; export declare const removeWhitespace: (value: string) => string;