1 | import * as React from 'react';
|
2 | import { BsPrefixProps } from './helpers';
|
3 | export interface PaginationProps extends BsPrefixProps, React.HTMLAttributes<HTMLUListElement> {
|
4 | size?: 'sm' | 'lg';
|
5 | }
|
6 | declare const _default: React.ForwardRefExoticComponent<PaginationProps & React.RefAttributes<HTMLUListElement>> & {
|
7 | First: React.ForwardRefExoticComponent<import("./PageItem").PageItemProps & React.RefAttributes<unknown>>;
|
8 | Prev: React.ForwardRefExoticComponent<import("./PageItem").PageItemProps & React.RefAttributes<unknown>>;
|
9 | Ellipsis: React.ForwardRefExoticComponent<import("./PageItem").PageItemProps & React.RefAttributes<unknown>>;
|
10 | Item: import("./helpers").BsPrefixRefForwardingComponent<"li", import("./PageItem").PageItemProps>;
|
11 | Next: React.ForwardRefExoticComponent<import("./PageItem").PageItemProps & React.RefAttributes<unknown>>;
|
12 | Last: React.ForwardRefExoticComponent<import("./PageItem").PageItemProps & React.RefAttributes<unknown>>;
|
13 | };
|
14 | export default _default;
|