/**
 * Enum representing different types of looking for options.
 * - RESTRICTED: "0"
 * - FLEXIBLE: "1"
 * - OPEN: "2"
 */
declare enum LookingFor {
    RESTRICTED = "0",
    FLEXIBLE = "1",
    OPEN = "2"
}
export { LookingFor };
//# sourceMappingURL=lookingfor.d.ts.map