import { SvelteComponentTyped } from "svelte";
import type paginationStore from '../stores/paginationStore';
declare const __propDef: {
    props: {
        [x: string]: any;
        pagination: ReturnType<typeof paginationStore>;
        perPageOptions?: number[];
    };
    events: {
        [evt: string]: CustomEvent<any>;
    };
    slots: {
        actions: {};
    };
};
export type TablePaginationProps = typeof __propDef.props;
export type TablePaginationEvents = typeof __propDef.events;
export type TablePaginationSlots = typeof __propDef.slots;
export default class TablePagination extends SvelteComponentTyped<TablePaginationProps, TablePaginationEvents, TablePaginationSlots> {
}
export {};
