import type { MakeStylesOptions } from './makeStyles'; import type { CSSClassesMapBySlot } from './types'; /** * A version of makeStyles() that accepts build output as an input and skips all runtime transforms & DOM insertion. * * @internal */ export declare function __css(classesMapBySlot: CSSClassesMapBySlot): (options: Pick) => Record;