import 'reflect-metadata';
export type IndexOptions = {
    type: 'key' | 'fulltext' | 'unique';
    orders: 'ASC' | 'DESC' | ('ASC' | 'DESC')[];
    attributes?: string[];
};
export declare function Index(options: IndexOptions): PropertyDecorator;
