/** * Enable automatic Cucumber step reporting for cypress-cucumber-preprocessor (legacy). * This function automatically captures Gherkin steps and reports them to Qase. * * @example * ```javascript * // In cypress/support/e2e.js * import { enableCucumberSupport } from 'cypress-qase-reporter/cucumber'; * * enableCucumberSupport(); * ``` */ export declare const enableCucumberSupport: () => void; /** * Manually add a cucumber step to Qase report. * Use this function in Before/After hooks or directly in step definitions * when using @badeball/cypress-cucumber-preprocessor. * * @param stepName - The name of the step (e.g., "Given I am on the homepage") * * @example * ```typescript * import { Before } from '@badeball/cypress-cucumber-preprocessor'; * import { addCucumberStep } from 'cypress-qase-reporter/cucumber'; * * Before(function() { * addCucumberStep(this.pickle.name); * }); * ``` */ export declare const addCucumberStep: (stepName: string) => void;