import * as CSS from "csstype"; import { StyledKeyType } from "./keys"; export type CSSProperty = Exclude; type ConditionalNumber = Q extends true ? number : DefaultValue; export type CSSValue

= CSS.Properties[P] | ConditionalNumber | Array>>; export type UtilityCSSMapping = { [key in K]: keyof CSS.Properties; }; export type ResponsiveStyle = { base: string; media: { [breakpoint: string]: string; }; }; export {};