import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { isDisabled: boolean; itemClass: string; anchorClass?: string | undefined; ariaLabel: string; href: string; onClick: () => void; }; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export type PaginationItemProps = typeof __propDef.props; export type PaginationItemEvents = typeof __propDef.events; export type PaginationItemSlots = typeof __propDef.slots; export default class PaginationItem extends SvelteComponentTyped { } export {};