declare type RecursivePartial = { [P in keyof T]?: T[P] | RecursivePartial; }; export declare const expectToEqual: (actual: T, expected: T) => void; export declare const expectToMatchObject: (...args: [T, RecursivePartial] | [T[], Array>]) => void; export {};