import type { Rule } from 'eslint'; import type { ImportSource } from '../is-supported-import'; type Node = Rule.Node; type RuleContext = Rule.RuleContext; /** * Returns whether the node is a usage of the `styled` API in the libraries we support. * * @param nodes Nodes to check. * @param context Rule context. * @param importSources A list of libraries we support. * @returns Whether the node is a usage of the `styled` API. */ export declare const isStyledComponent: (nodes: Node[], context: RuleContext, importSources: ImportSource[]) => boolean; export {};