import { RouteLocationNormalizedLoaded } from 'vue-router'; export declare const errorPageRoutes: ({ name: string; path: string; component: () => Promise; props: ({ params: { value } }: RouteLocationNormalizedLoaded) => { value: string | string[]; }; meta: { title: string; noAuth: boolean; }; redirect?: undefined; } | { path: string; redirect: string; name?: undefined; component?: undefined; props?: undefined; meta?: undefined; })[];