///
export { SSRProvider, createClassName } from "./css-core";
/**
* Simple compiler that adds the selector to CSS compiled by Stylis
*/
export declare function replaceCompiler(selector: string, cssString: string): string;
export declare const css: {
(style: string, sourceMap: string): {
asCSS(selector: string): string;
asStyleTag(selector: string): (props: any) => JSX.Element;
cssString: string;
sourceMap: string;
render: (reactElement: T, cssChunks: {
className: string;
cssString: string;
sourceMap: string;
}[]) => T;
hash: (str: string) => string;
};
(literals: TemplateStringsArray, ...placeholders: (string | number)[]): {
asCSS(selector: string): string;
asStyleTag(selector: string): (props: any) => JSX.Element;
cssString: string;
sourceMap: string;
render: (reactElement: T, cssChunks: {
className: string;
cssString: string;
sourceMap: string;
}[]) => T;
hash: (str: string) => string;
};
compiler: import("./css-core").CSSCompiler;
};