import { BaseComponent } from './_shared'; export type ZPagination_Props = BaseComponent & Partial<{ /** */ readonly pages: number; /** */ readonly model: number; /** */ readonly 'show-edges': boolean; /** */ readonly disabled: boolean; }>; export declare const zPaginationSlots: never[]; export type ZPagination_Slots = (typeof zPaginationSlots)[number]; export type ZPagination_Events = Partial<{ /** ... */ readonly change: Required['model']; readonly restarted: void; }>;