import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { currentPage?: number; total?: number; maxPages?: number; maxPagesView?: number; }; events: { change: CustomEvent; } & { [evt: string]: CustomEvent; }; slots: {}; }; export declare type PaginationProps = typeof __propDef.props; export declare type PaginationEvents = typeof __propDef.events; export declare type PaginationSlots = typeof __propDef.slots; export default class Pagination extends SvelteComponentTyped { } export {};