import type { StyleRule } from '@vanilla-extract/css' import { BreakpointNames } from '../css/breakpoints' declare type CSSProps = Omit export declare type ResponsiveStyle = { [k in BreakpointNames]?: CSSProps } export interface ResponsiveStyleFn { (confBreak: ResponsiveStyle): StyleRule } export declare const responsiveStyle: (confBreak: ResponsiveStyle) => StyleRule export {}