import type { BaseProps, ExtendedSizedComponent, ChangeHandler, InteractiveHandlers } from '../../type/component';
interface Props extends BaseProps, ExtendedSizedComponent, ChangeHandler<number>, InteractiveHandlers {
    /** Current active page index (0-based) */
    currentPage?: number;
    /** Total number of pages */
    totalPages: number;
    /** Whether clicking dots changes the page */
    interactive?: boolean;
}
declare const PaginationDots: import("svelte").Component<Props, {}, "">;
type PaginationDots = ReturnType<typeof PaginationDots>;
export default PaginationDots;
//# sourceMappingURL=PaginationDots.svelte.d.ts.map