/** @typedef {typeof __propDef.props} PaginationProps */ /** @typedef {typeof __propDef.events} PaginationEvents */ /** @typedef {typeof __propDef.slots} PaginationSlots */ export default class Pagination extends SvelteComponentTyped<{ [x: string]: any; totalRows?: number; limit?: number; queryParams?: any[]; }, { [evt: string]: CustomEvent; }, {}> { } export type PaginationProps = typeof __propDef.props; export type PaginationEvents = typeof __propDef.events; export type PaginationSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { [x: string]: any; totalRows?: number; limit?: number; queryParams?: any[]; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export {};