import { Decorator, Node, NodeArray } from 'typescript'; export declare const findMatchingDecoratorForNode: (node: Node, decoratorId: string) => Decorator | undefined; export declare const findMatchingDecorator: (decorators: NodeArray, decoratorId: string) => Decorator | undefined; export declare const whereHasDecorator: (node: Node, id?: string | undefined) => boolean;