import { VortexExtension, Page } from '../index';
declare module '../index' {
    interface VortexConfig {
        only?: string[];
        except?: string[];
        reset?: string[];
        preserveHistory?: boolean;
        preserveScroll?: boolean;
        replaceHistory?: boolean;
    }
}
/**
 * Vortex Inertia extension
 *
 * @see https://inertiajs.com
 */
declare const inertia: (initialPage: Page) => VortexExtension;
export default inertia;
