declare function classJoin(withConditions: ClassNamesList, withoutConditions?: string[]): string;
export interface ClassNamesList {
    [key: string]: boolean | undefined | null;
}
export { classJoin as default };
