/** * Copyright (c) 2026 Microblink Ltd. All rights reserved. */ /** * Options for creating a fake `InputDeviceInfo` info object. */ interface CreateInputDeviceProps extends Partial { /** * The label of the device. */ label: string; /** * The mock capabilities are used to simulate the capabilities of the device. * This is not available on Firefox. */ mockCapabilities?: Partial; } /** * Creates a fake `InputDeviceInfo` info object. * * @param props - The properties for the device. * @returns The fake `InputDeviceInfo` info object. */ export declare const createMockInputDeviceInfo: ({ label, deviceId, groupId, kind, mockCapabilities, }: CreateInputDeviceProps) => InputDeviceInfo; export {}; //# sourceMappingURL=createInputDeviceInfo.d.ts.map