/** * Function to get the scope of the form based on the step index (if provided) * or the whole form if no step index is provided * @param stepIndex - The step index to get the scope of the form * @returns The scope of the form. Examples: * - Example with stepper: * ```ts * cy.get('[class*="M4LWindowBase-contentWindowBase"]') * .find('[class*="M4LStepper-contentArea"]') * .find('[class*="M4LStepper-stepContent"]') * .eq(1) * .find('[class*="M4LPaperForm-containerContent"]'); * ``` * - Example without stepper: * ```ts * cy.get('[class*="M4LWindowBase-contentWindowBase"]') * .find('[class*="M4LPaperForm-containerContent"]'); * ``` */ export declare const getFormScope: (stepIndex?: number) => Cypress.Chainable>;