/*! * Original code by Chakra UI * MIT Licensed, Copyright (c) 2019 Segun Adebayo. * * Credits to the Chakra UI team: * https://github.com/chakra-ui/chakra-ui/blob/main/packages/styled-system/src/css.ts */ import { CSSObject } from "../stitches.config"; import { SystemStyleObject, Theme } from "../types"; /** Return a CSSObject from a system style object. */ export declare function toCSSObject(systemStyleObject: SystemStyleObject, theme: Theme): CSSObject;