/** * Converts a string to the corresponding enum value. * @param enumObj - The enum object to convert the string to. * @param value - The string value to convert. * @returns The corresponding enum value. * @throws Error if the value is not a valid enum value. */ export declare function toEnum>(enumObj: T, value: string): T[keyof T];