import { DecoratorHandler, DecoratorMap } from './types'; export declare function createDecorator(handler: DecoratorHandler): () => (target: any, propertyName: string) => void; export declare function getDecorators(target: any): DecoratorMap;