import type { ClassHash } from "./main.types";
import type { CssModule } from "./definitions.types";
export { classNamesCheck };
/**
* Identical function or returning constant `EMPTY_OBJECT` for keys check of not used classes in components tree
* @example
* ```tsx
* // Dummies shape
* ;
* ```
* ---
* ```tsx
* import type { ClassNamesFrom } from "react-classnaming/types"
* import css_module from "./some.css" // With class `.never-used {...}`
*
*
* )} />;
* ```
*/
declare function classNamesCheck(source?: Module, _?: Target): string extends keyof Module ? Target : Module;