declare global { namespace Cypress { interface Chainable { /** * Finds the dialog action container, asserts it contains the option text, and clicks it. * @example * cy.m4lActionIntro('Accept'); * cy.m4lActionIntro('Cancel'); */ m4lConfirmActionIntro( /** * Button option */ option: string, ): Chainable; } } } export {};