import type OpenFin from "@openfin/core";
/**
 * The window locator identityString value types.
 */
export type WindowLocatorIdentityStringValueTypes = [string | RegExp, string | RegExp];
/**
 * The window locator identity value types.
 */
export type WindowLocatorIdentityValueTypes = OpenFin.Identity;
/**
 * The window locator value types.
 */
export type WindowLocatorValueTypes = string | RegExp | (string | RegExp)[] | WindowLocatorIdentityStringValueTypes | WindowLocatorIdentityValueTypes;
