interface TableOptions {
    compaction?: CompactionType;
}
declare enum CompactionType {
    TimeWindowCompactionStrategy = 0,
    SizeTieredCompactionStrategy = 1,
    LeveledCompactionStrategy = 2,
    IncrementalCompactionStrategy = 3
}
declare function Model(tableName?: string, options?: TableOptions): (model: Function) => void;

export { Model };
