import { SvelteComponentTyped } from 'svelte'; export interface PaginationLinkProps extends svelte.JSX.HTMLAttributes { arialabel?: string; first?: boolean; href?: string; last?: boolean; next?: boolean; previous?: boolean; } export default class PaginationLink extends SvelteComponentTyped< PaginationLinkProps, { click: WindowEventMap['click'] }, { default: {} } > {}