import { Feature, BuilderData } from "./base"; export declare const NAVIGATION_CONFIG_KEY = "navigation"; export declare const GO_BACK_BLOCK_ID = "goback"; export declare const GO_BACK_BLOCK_NAME = "Checkpoints - Voltar"; export declare const DEFAULT_NAVIGATION_CONFIG: { service: string; checkpoints: { stackSize: number; goBackMatches: string[]; }; errors: { stackSize: number; }; }; export declare const GO_BACK_MATCHES_CONFIG_KEY = "checkpoints.goBackMatches"; export declare const DEFAULT_NAVIGATION_KEYS: string[]; export declare class NavigationFeature extends Feature { static NAME: string; constructor(builder: BuilderData, force?: boolean); run(): void; }