import ts from 'typescript'; export declare type DecoratableNode = ts.Node & { readonly decorators?: ts.NodeArray; }; export declare function getDecorators(node: DecoratableNode): readonly ts.Decorator[] | undefined; export declare function getDecoratorsArray(node: DecoratableNode): readonly ts.Decorator[];