interface IPluginOptions {
    model: object;
    searchKey?: string;
    overwriteFind?: boolean;
    path?: string | [string];
    searchFunction?: (query: string) => object;
    addFields?: object;
}
declare const atlasSearchPlugin: {
    initialize: (options: IPluginOptions) => void;
};
export = atlasSearchPlugin;
