UNPKG

471 BTypeScriptView Raw
1import PageItem, { Ellipsis, First, Last, Next, Prev } from './PageItem';
2
3import { BsPrefixComponent } from './helpers';
4
5export interface PaginationProps {
6 size?: 'sm' | 'lg';
7}
8
9declare class Pagination extends BsPrefixComponent<'ul', PaginationProps> {
10 static First: typeof First;
11 static Prev: typeof Prev;
12 static Ellipsis: typeof Ellipsis;
13 static Item: typeof PageItem;
14 static Next: typeof Next;
15 static Last: typeof Last;
16}
17
18export default Pagination;