/**
* Parse a string into the given (string) enum type. Returns undefined if the
* enum type provided did not match any of the keys in the enum.
*/exportdeclarefunction parseEnumValue<T extendsstring>(enumObj: Record<string, T>, value: string): T | undefined;