declare function isKeyOf<T extends object>(obj: T, k: keyof any): k is keyof T;

export { isKeyOf };
