import { InternalOptions } from "../types/scanview.types"; import { State } from "xstate"; import { ScanViewContext, ScanViewEvent } from "../scanview/scanViewStateMachine"; export interface MockVideoResult { stream: MediaStream; metadata: { [key: string]: any; }; } export declare const createMockVideoStream: (stateMachineState: State, internalOptions: InternalOptions, size?: { width: number; height: number; }) => Promise; export declare const setupMockVideo: (stateMachineState: State, internalOptions: InternalOptions, size?: { width: number; height: number; }) => Promise;