import type { ASTNode, namedTypes } from 'ast-types' import type { NodePath } from 'ast-types/lib/node-path' export type CSSFunctionSource = NodePath & ASTNode & { loc: namedTypes.SourceLocation } export type StyledFunctionSource = NodePath & ASTNode & { loc: namedTypes.SourceLocation } export type ComputedStyleSource = NodePath & ASTNode & { loc: namedTypes.SourceLocation }