import { TSESTree } from '@typescript-eslint/types'
/**
 * Checks if a node represents a style component.
 *
 * @param node - The AST node to check.
 * @returns True if the node is a style component, false otherwise.
 */
export declare function isStyleComponent(
  node: TSESTree.ObjectExpression | TSESTree.ObjectPattern,
): boolean
