import type { Annotation } from "./annotation"; export type DecoratorAnnotation any> = Annotation & Decorator; export declare function createDecoratorAnnotation any>(annotation: Annotation, decorate: (annotation: Annotation, value: any, context: any) => any): DecoratorAnnotation;