import type { Rule } from 'eslint';
import { type CallExpression, type Expression } from 'eslint-codemod-utils';
export declare const isCssInJsCallNode: (node?: Expression | null) => node is CallExpression;
export declare const isCssInJsObjectNode: (node?: Expression | null) => node is CallExpression;
export declare const isDecendantOfStyleBlock: (node: Rule.Node) => boolean;
export { isPropertyKey } from './is-property-key';
