import type { ResolvedWizardOptions, WizardOptions } from "./types"; export declare const INTERNAL_CLASSES: Readonly<{ root: "wizard"; nav: "wizard-nav"; content: "wizard-content"; buttons: "wizard-buttons"; button: "wizard-btn"; step: "wizard-step"; form: "wizard-form"; next: "next"; prev: "prev"; finish: "finish"; highlight: "highlight-error"; }>; export declare const DEFAULT_OPTIONS: Readonly<{ wz_class: string; wz_nav: string; wz_ori: string; wz_nav_style: string; wz_content: string; wz_buttons: string; wz_button: string; wz_button_style: string; wz_step: string; wz_form: string; wz_next: string; wz_prev: string; wz_finish: string; wz_highlight: string; bubbles: true; nav: true; buttons: true; highlight: true; current_step: number; steps: number; highlight_time: number; navigation: "all"; next: string; prev: string; finish: string; before_step_change: any; highlight_type: { error: string; warning: string; success: string; info: string; }; i18n: { empty_wz: string; empty_nav: string; empty_content: string; empty_html: string; empty_update: string; no_nav: string; form_validation: string; diff_steps: string; random: string; already_defined: string; title: string; }; }>; export declare function createOptions(args?: WizardOptions): ResolvedWizardOptions;