5 lines
312 B
TypeScript
5 lines
312 B
TypeScript
|
import { Interpolation, RuleSet, Styles } from '../types';
|
||
|
declare function css(styles: Styles<object>, ...interpolations: Interpolation<object>[]): RuleSet<object>;
|
||
|
declare function css<Props extends object>(styles: Styles<Props>, ...interpolations: Interpolation<Props>[]): RuleSet<Props>;
|
||
|
export default css;
|