import { IKeywordPopulateMap } from './keyword-populate-map.interface';
export interface IKeywordOptions {
    paths?: string[];
    virtuals?: IKeywordPopulateMap;
    omit?: string[];
    logging?: boolean;
    onNew?: boolean;
    onUpdate?: boolean;
}
