import ElementType from './ElementType';
import { IAnnotation, IAnnotationClazz } from './type';
/**
 * 创建一个运行时注解
 * @param { AnnotationOptions } options 注解参数
 */
export default function create(elementTypes: ElementType | ElementType[], annotationType: IAnnotationClazz): IAnnotation;
