/**
 * Default error routes.
 *
 * N.B.: The first of these routes serve as a catch-all, so 404 not found must
 * be first.
 */
declare const _default: {
    path: string;
    name: string;
    meta: {
        title: string;
        description: string;
    };
    component: () => Promise<typeof import("../views/Page404NotFound.vue")>;
}[];
export default _default;
