import { Cache, SystemConfig, Props } from './types'; import { Theme } from '../types/system-props'; export declare const parseResponsiveStyle: ({ cache, systemConfig, scale, propValue, props, }: { cache: Cache; systemConfig: SystemConfig; scale: string; propValue: (string | number | ((arg0: Theme | undefined) => string | number))[]; props: Props; }) => {}; export declare const parseResponsiveObject: ({ cache, systemConfig, scale, propValue, props, }: { cache: Cache; systemConfig: SystemConfig; scale: string; propValue: { [x: string]: string | number | ((arg0: Theme | undefined) => string | number); }; props: Props; }) => {};