/* eslint-disable */ import type { SystemStyleObject } from '../types/index'; interface CssFunction { (...styles: Array): string raw: (...styles: Array) => SystemStyleObject } export declare const css: CssFunction;