import type { CSSClassesMapBySlot, CSSRulesByBucket, StylesBySlots } from './types'; /** * Calls resolveStyleRules() for each slot, is also used by build time transform. * * @param stylesBySlots - An object with makeStyles rules where a key is a slot name * @param classNameHashSalt - A salt for classes hash * * @return - A tuple with an object classnames mapping where a key is a slot name and an array with CSS rules */ export declare function resolveStyleRulesForSlots(stylesBySlots: StylesBySlots, classNameHashSalt?: string): [CSSClassesMapBySlot, CSSRulesByBucket];