import { type ComponentInterface, type EventEmitter } from "../../stencil-public-runtime"; export declare class ScoutPagination implements ComponentInterface { /** * Which page that is selected. */ selectedIndex: number; /** * Total number of pages. */ pages: number; /** * Pagination aria label to describe what type of nav it is. * E.g "Pagination" */ paginationAriaLabel: string; /** * Will always included first and last page, plus "..." if exceeded. */ maxAmountOfPagesShowing: number; /** * Emitted when clicking a page. Use event data to set selectedIndex. */ scoutPaginationClick: EventEmitter<{ selectedIndex: number; }>; render(): any; }