/** * Extracts tags for a given scenario name from a Gherkin feature file. * @param filePath - Path to the feature file. * @param scenarioName - Name of the scenario to search for. * @returns An array of tags found for the specified scenario. */ export declare function extractTags(filePath: string, scenarioName: string): string[];