/** * Navigation command handlers. */ import type { Step } from "../../../domain/index"; import type { ExecutionContext } from "../context"; export declare function handleNavigate(step: Step, ctx: ExecutionContext): Promise; export declare function handleReload(step: Step, ctx: ExecutionContext): Promise; export declare function handleGoBack(step: Step, ctx: ExecutionContext): Promise; export declare function handleGoForward(step: Step, ctx: ExecutionContext): Promise; export declare function describeNavigate(step: Step): string; export declare function describeReload(): string; export declare function describeGoBack(): string; export declare function describeGoForward(): string; //# sourceMappingURL=navigation.d.ts.map