type __VLS_Props = { /** * Current page number */ modelValue: number; /** * Total number of pages (optional, defaults to 1) */ pages?: number; /** * Number of visible numeric page buttons (excluding ellipsis, first and last) */ visible?: number; /** * Label for the pagination component */ label?: string; /** * ID of the element controlled by this pagination */ ariaControls?: string; /** * Heading level for the pagination label (for accessibility) */ headingLevel?: 1 | 2 | 3 | 4 | 5 | 6; }; declare function __VLS_template(): { attrs: Partial<{}>; slots: { prepend?(_: {}): any; 'first-page'?(_: {}): any; previous?(_: {}): any; 'page-number'?(_: { page: number; }): any; 'page-number'?(_: { page: number; }): any; 'page-number'?(_: { page: number; }): any; next?(_: {}): any; 'last-page'?(_: {}): any; append?(_: {}): any; }; refs: {}; rootEl: HTMLDivElement; }; type __VLS_TemplateResult = ReturnType; declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & { "update:modelValue": (page: number) => any; }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{ "onUpdate:modelValue"?: ((page: number) => any) | undefined; }>, { label: string; headingLevel: 1 | 2 | 3 | 4 | 5 | 6; pages: number; visible: number; ariaControls: string; }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>; declare const _default: __VLS_WithTemplateSlots; export default _default; type __VLS_WithTemplateSlots = T & { new (): { $slots: S; }; };