import { CSSProperties } from 'jsxstyle-utils'; import { CacheObject, StyleProps } from '../types'; export interface StylesByClassName { [key: string]: CSSProperties; } export default function getStylesByClassName( styleGroups: StyleProps[] | undefined, namedStyleGroups: | { [key: string]: CSSProperties; } | undefined, staticAttributes: { [key: string]: string | number; }, cacheObject: CacheObject, classNameFormat?: 'hash' ): StylesByClassName;