export declare type HostType = 'app' | 'companion';
interface MockHostProperties {
    maxAPIVersion?: string;
}
export declare function createMockHost(hostType: 'app' | 'companion', hostProperties: MockHostProperties, handleLog: (msg: string) => void): Promise<{
    closePromise: Promise<void>;
    close: () => void;
}>;
export {};
//# sourceMappingURL=mockHost.d.ts.map