import { Edm } from 'ts-odatajs'; import { AnnotationDecorator } from './annotation-decorator'; export interface ExpressionWithCustom extends Edm.Base.Annotatable { custom?: any; } export declare class CustomDecorator implements AnnotationDecorator { canDecorate(annotation: Edm.Annotation): boolean; decorate(expression: ExpressionWithCustom, annotation: Edm.Annotation): void; }