UNPKG

348 BTypeScriptView Raw
1import { Interpolation, NoInfer, RuleSet, Styles } from '../types';
2declare function css(styles: Styles<object>, ...interpolations: Interpolation<object>[]): RuleSet<object>;
3declare function css<Props extends object>(styles: Styles<NoInfer<Props>>, ...interpolations: Interpolation<NoInfer<Props>>[]): RuleSet<NoInfer<Props>>;
4export default css;