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 {
    annotation: string;
    decorate(expression: ExpressionWithCustom, annotation: Edm.Annotation): void;
}
