import * as Css from 'csstype'; import { type StylePropertyConfigs } from '../style-properties'; import { type SystemStyleObject } from './types'; type GetCssOptions = { theme: Record; configs?: StylePropertyConfigs; pseudos?: Record; }; export type StyleObjectOrFn = SystemStyleObject | ((theme: Record) => SystemStyleObject); export declare const getCss: (options: GetCssOptions) => (stylesOrFn: StyleObjectOrFn, nested?: boolean) => Record; export {};