export interface IsEqualProps { source: any; target: any; } export default function IsEqual({ source: a, target: b }: IsEqualProps): boolean;