import { PlannedFile } from "../../io/file-writer"; export interface AddQueryPlan { name: string; feature: string; featuresRoot: string; } export declare function createQueryFiles(plan: AddQueryPlan): PlannedFile[]; export declare function createQueryIndexFile(feature: string, featuresRoot: string, queryNames: string[]): PlannedFile; export declare function queryNameFromPath(filePath: string): string | undefined; export declare function queryFeatureFromPath(filePath: string, featuresRoot: string): string | undefined;