import type { Snippet } from 'svelte'; import type { HTMLButtonAttributes } from 'svelte/elements'; type $$ComponentProps = HTMLButtonAttributes & { children?: Snippet; }; declare const PaginationNext: import("svelte").Component<$$ComponentProps, {}, "">; type PaginationNext = ReturnType; export default PaginationNext;