export declare const hasProp: <X extends unknown, Y extends PropertyKey>(obj: X, prop: Y) => obj is X & Record<Y, unknown>;
