import type { Rule } from 'eslint'; export interface ModuleMap { source: string; target?: string; names: Record; order?: Record; held?: Record; composes?: Record; functions?: Record; tags?: { key: string; tag: string; under: string; direct?: boolean; order?: number; }[]; stylesheet?: string; unconvertible?: string[]; } export interface AdoptStylesOptions { modules: Record; styleProp?: string; } export declare const adoptStyles: Rule.RuleModule;