import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { active?: number; total?: number; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export declare type PaginationIndicatorProps = typeof __propDef.props; export declare type PaginationIndicatorEvents = typeof __propDef.events; export declare type PaginationIndicatorSlots = typeof __propDef.slots; export default class PaginationIndicator extends SvelteComponentTyped { } export {};