/** * Checks if the previous props and the next props are equal. * @param prevProps - The previous props object. * @param nextProps - The next props object. * @returns `true` if the props are equal, `false` otherwise. */ export declare function propsEqual
(prevProps: Readonly
, nextProps: Readonly
): boolean;