import { IKeywordPopulateMap } from './keyword-populate-map.interface';
export interface IKeywordOptions {
    paths?: string[];
    virtuals?: IKeywordPopulateMap;
    omit?: string[];
    logging?: boolean;
    onNew?: boolean;
    onUpdate?: boolean;
}
/**
 * Options returned by {@link validateOptions}, with defaults applied for every field.
 */
export interface IValidatedKeywordOptions {
    paths: string[];
    virtuals: IKeywordPopulateMap;
    omit: string[];
    logging: boolean;
    onNew: boolean;
    onUpdate: boolean;
}
