import { Node, NodePath } from "@babel/traverse"; import { Element } from "stylis"; export declare type ParseCssResult = { ast: Element[]; replacePath: NodePath; }; /** * Convert 'css' reference to a parsed Stylis AST. */ export declare function parseCss(reference: NodePath): ParseCssResult | undefined; //# sourceMappingURL=parseCss.d.ts.map