import { RouteRecordRaw } from 'vue-router'; import { PageAriaRole } from '../types'; type __VLS_Props = { pageTitle?: string; message?: string; code?: string; codeErrorText?: string; btnText?: string; btnHref?: string; btnLink?: RouteRecordRaw | string; hideBtn?: boolean; uniqueId?: string; role?: PageAriaRole; headingLevel?: 1 | 2 | 3 | 4 | 5 | 6; }; declare function __VLS_template(): { attrs: Partial<{}>; slots: { 'additional-content'?(_: {}): any; action?(_: {}): any; illustration?(_: {}): any; }; refs: {}; rootEl: HTMLDivElement; }; type __VLS_TemplateResult = ReturnType; declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, { "btn-click": (...args: any[]) => void; }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{ "onBtn-click"?: ((...args: any[]) => any) | undefined; }>, { code: string; role: PageAriaRole; headingLevel: 1 | 2 | 3 | 4 | 5 | 6; message: string; uniqueId: string; btnText: string; pageTitle: string; codeErrorText: string; btnHref: string; btnLink: RouteRecordRaw | string; hideBtn: boolean; }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>; declare const _default: __VLS_WithTemplateSlots; export default _default; type __VLS_WithTemplateSlots = T & { new (): { $slots: S; }; };