/**
 * When I go:
 *
 * ```gherkin
 * When I go {int}
 * ```
 *
 * @example
 *
 * Navigate forward to the next URL in the browser's history:
 *
 * ```gherkin
 * # equivalent to clicking the forward button
 * When I go 1
 * ```
 *
 * Navigate back to the previous URL in the browser's history:
 *
 * ```gherkin
 * # equivalent to clicking the back button
 * When I go -1
 * ```
 *
 * @see
 *
 * - {@link When_I_go_back | When I go back}
 * - {@link When_I_go_forward | When I go forward}
 */
export declare function When_I_go(direction: number): void;
/**
 * When I go back:
 *
 * ```gherkin
 * When I go back
 * ```
 *
 * Alias for {@link When_I_go | "When I go"}:
 *
 * ```gherkin
 * When I go -1
 * ```
 *
 * @example
 *
 * Navigate back to the previous URL in the browser's history:
 *
 * ```gherkin
 * When I go back
 * ```
 *
 * @see
 *
 * - {@link When_I_go | When I go}
 * - {@link When_I_go_forward | When I go forward}
 */
export declare function When_I_go_back(): void;
/**
 * When I go forward:
 *
 * ```gherkin
 * When I go forward
 * ```
 *
 * Alias for {@link When_I_go | "When I go"}:
 *
 * ```gherkin
 * When I go 1
 * ```
 *
 * @example
 *
 * Navigate forward to the next URL in the browser's history:
 *
 * ```gherkin
 * When I go forward
 * ```
 *
 * @see
 *
 * - {@link When_I_go | When I go}
 * - {@link When_I_go_back | When I go back}
 */
export declare function When_I_go_forward(): void;
//# sourceMappingURL=go.d.ts.map