export interface DottedPaginationProps { currentPage?: number; totalPage?: number; onPrev?: VoidFunction; onNext?: VoidFunction; DotColor?: string; } declare const EliceDottedPagination: (props: DottedPaginationProps) => import("react/jsx-runtime").JSX.Element | "Total page is at most 10"; export default EliceDottedPagination;