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