/** * A utility function to process tagged template literals for CSS-in-JS. * * @param {TemplateStringsArray} strings - The static parts of the template literal. * @param {...any} interpolations - The dynamic values to be interpolated into the CSS. * @returns {string} The processed CSS string with interpolations applied. * * @example * const styles = css` * color: ${props => props.color}; * font-size: ${props => props.fontSize}px; * `; */ declare const css: (strings: TemplateStringsArray, ...interpolations: any[]) => string; export default css; //# sourceMappingURL=css.d.ts.map