import { DataTable } from '@badeball/cypress-cucumber-preprocessor';
/**
 * When I blur:
 *
 * ```gherkin
 * When I blur
 * ```
 *
 * Blurs the element with focus.
 *
 * @example
 *
 * ```gherkin
 * When I blur
 * ```
 *
 * With [options](https://docs.cypress.io/api/commands/blur#Arguments):
 *
 * ```gherkin
 * When I blur
 *   | log | true |
 *   | force | false |
 *   | timeout | 4000 |
 * ```
 *
 * @remarks
 *
 * A preceding step like {@link When_I_find_input_by_label_text | "When I find input by label text"} is required. For example:
 *
 * ```gherkin
 * When I find input by label text "Text"
 *   And I blur
 * ```
 */
export declare function When_I_blur(options?: DataTable): void;
//# sourceMappingURL=blur.d.ts.map