/** * Modifier extraction from AST nodes. */ import type { TSESTree } from '@typescript-eslint/typescript-estree'; import type { Modifier } from '../types'; /** * Extracts modifiers from an AST node. */ export declare function extractModifiers(node: TSESTree.Node, isExported: boolean, isDefaultExport: boolean): Set; //# sourceMappingURL=modifiers.d.ts.map