import { Schema } from "../schema/Schema"; import { TableIndexType } from "./Table"; export declare class IndexSchema { name: string; indexType: TableIndexType; attrs: string[]; schema: Schema; constructor(schema: Schema); getIndexKeyForItem(item: any): any; }