import { Dict } from "@chakra-xui/utils"; import { CSSObject, StyleObjectOrFn } from "./css.types"; declare type PropsOrTheme = Dict | { theme: Dict; }; export declare const css: (args?: StyleObjectOrFn) => (props?: PropsOrTheme) => CSSObject; export {};