import { SvelteComponent } from "svelte"; declare const __propDef: { props: { rows?: any; perPage?: number | undefined; trimmedRows: any; paginationTestId: string; prevPageBtnTestId: string; nextPageBtnTestId: string; firstPageBtnTestId: string; lastPageBtnTestId: string; currPageTestId: string; totalPagesTestId: string; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export type PaginationProps = typeof __propDef.props; export type PaginationEvents = typeof __propDef.events; export type PaginationSlots = typeof __propDef.slots; export default class Pagination extends SvelteComponent { } export {};