import { ProceedFormStep } from './type'; /** * Function to proceed to the next step or submit the form by clicking the button with the given label * @param buttonLabel - The label of the button to click * @param force - The force to click the button if true, the button will be clicked with force * @returns The click action of the button with the given label * @example * cy.proceedFormStep({ buttonLabel: 'N_D:[stepper.label_next_button]', force: false }); */ export declare const proceedFormStep: ({ buttonLabel, force }: ProceedFormStep) => void;