import { DevicesConfig, MatchDevicesResult, MatchDevicesResult as MatchDevicesResult$1 } from "@pastweb/tools"; //#region src/useMatchDevice/types.d.ts /** * Result returned by {@link useMatchDevice} and {@link reuseMatchDevice}. */ type DevicesResult = { /** Current match result for each configured device. */devices: MatchDevicesResult$1; /** Registers a callback for a specific device match change. */ onMatch: (deviceName: string, fn: (result: boolean, deviceName: string) => void) => void; }; //#endregion export { type DevicesConfig, DevicesResult, type MatchDevicesResult }; //# sourceMappingURL=types.d.ts.map