export declare const shake: (obj: T) => Shook; type Shook = { [K in keyof T as T[K] extends undefined ? never : K]: T[K]; }; export {};