import {Jss, JssStyle} from 'jss' export {JssStyle} export type StyleArg = JssStyle | Array export type Css = (...args: StyleArg[]) => string type CreateCss = (jss?: Jss) => Css declare const create: CreateCss export {create} declare const createCss: ReturnType export default createCss