export declare type Merge<Object1, Object2> = Omit<Object1, keyof Object2> & Object2;
