import 'reflect-metadata';
import { FieldType } from '../types.js';
export interface FieldOptions {
    type?: FieldType;
    primary?: boolean;
    unique?: boolean;
    nullable?: boolean;
    default?: any;
}
export declare function Field(options?: FieldOptions): PropertyDecorator;
