UNPKG

927 BTypeScriptView Raw
1import * as React from 'react';
2import { BsPrefixProps, BsPrefixRefForwardingComponent } from './helpers';
3export interface PageItemProps extends React.HTMLAttributes<HTMLElement>, BsPrefixProps {
4 disabled?: boolean;
5 active?: boolean;
6 activeLabel?: string;
7 href?: string;
8}
9declare const PageItem: BsPrefixRefForwardingComponent<'li', PageItemProps>;
10export default PageItem;
11export declare const First: React.ForwardRefExoticComponent<PageItemProps & React.RefAttributes<unknown>>;
12export declare const Prev: React.ForwardRefExoticComponent<PageItemProps & React.RefAttributes<unknown>>;
13export declare const Ellipsis: React.ForwardRefExoticComponent<PageItemProps & React.RefAttributes<unknown>>;
14export declare const Next: React.ForwardRefExoticComponent<PageItemProps & React.RefAttributes<unknown>>;
15export declare const Last: React.ForwardRefExoticComponent<PageItemProps & React.RefAttributes<unknown>>;