import { SvelteComponent } from "svelte"; import type { Props } from "../types.js"; declare const __propDef: { props: Props; events: { [evt: string]: CustomEvent; }; slots: { default: { builder: { 'data-scope': string; } & { [x: `data-melt-${string}`]: ""; } & { action: import("svelte/action").Action>; }; pages: import("@melt-ui/svelte/index.js").PageItem[]; range: { start: number; end: number; }; }; }; }; 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 {};