declare const KEYS: { __id__: string | symbol; __store__: string | symbol; __prev__: string | symbol; __use__: string | symbol; __elements__: string; __style__: string; __styles__: string; __css__: string; __hash__: string; /** * This prop is needed for the interop between different component frameworks */ __classProp__: string; }; declare const use: (obj: any) => {}; declare const create: (args: any) => {}; declare const getStyles: () => { map: {}; readonly css: string; }; declare const clearStyles: () => void; declare const RESHADOW_ID = "__reshadow__"; declare const css: (code: any, hash: any) => void; declare const styled: (elem: any) => any; declare const set: (args: any, newStyle: any) => void; declare const USE_PREFIX = "use--"; declare const ELEMENT_PREFIX = "__"; declare const MOD_PREFIX = "_"; declare const MOD_SEPARATOR = "_"; declare const parseElement: (name: any) => any; declare const parseAttribute: (name: any) => any; declare const appendClassName: (className: any, cn?: string) => string; declare const appendElement: (styles: any, key: any, cn?: string) => string; declare const appendModifier: (styles: any, key: any, value: any, cn?: string) => string; declare function map(element: any): {}; export { styled, use, css, create, set, map, getStyles, clearStyles, appendModifier, appendElement, appendClassName, parseAttribute, parseElement, MOD_SEPARATOR, MOD_PREFIX, ELEMENT_PREFIX, USE_PREFIX, KEYS, RESHADOW_ID, };