import * as ts from 'typescript'; export declare function getDecorator(node: ts.Node, name: string): ts.Decorator; export declare function getDecorators(node: ts.Node, aliasToExport: Record): Record; export declare function getDecoratorName(decorator: ts.Decorator): string; export declare function getDecoratorArguments(decorator: ts.Decorator): ts.NodeArray; export declare function getDecoratorParamValue(decorator: ts.Decorator, paramName: string): any;