import { SvelteComponentTyped } from "svelte";
import type paginationStore from '../stores/paginationStore';
declare const __propDef: {
    props: {
        [x: string]: any;
        pagination: ReturnType<typeof paginationStore>;
        hideSinglePage?: boolean;
    };
    events: {
        [evt: string]: CustomEvent<any>;
    };
    slots: {
        actions: {};
    };
};
export type PaginationProps = typeof __propDef.props;
export type PaginationEvents = typeof __propDef.events;
export type PaginationSlots = typeof __propDef.slots;
export default class Pagination extends SvelteComponentTyped<PaginationProps, PaginationEvents, PaginationSlots> {
}
export {};
