export declare function mergeProps<A, B>(a: A, b: B): B & A;
export declare function mergeProps<A, B, C>(a: A, b: B, c: C): C & B & A;
