import { ColumnAnnotation } from './Column';
declare interface IdAnnotation {
    name: string;
}
declare interface IdColumnAnnotation extends ColumnAnnotation {
    id?: boolean;
}
declare function Id(): PropertyDecorator;
export { IdAnnotation, IdColumnAnnotation, Id };
