import { SchemaNode } from './SchemaParser'; import { SchemaDirective } from './SchemaDirective'; import { WarthogModel } from '../model'; export declare class FTSDirective implements SchemaDirective { validate(_path: SchemaNode[]): void; generate(path: SchemaNode[], model: WarthogModel): WarthogModel; /** * * Does the checks and returns full text query names to be used; * * @param d Directive Node * @returns Fulltext query names */ private _checkFullTextSearchDirective; }