/**
 * @file index.tsx
 *
 * @fileoverview Pager component. Renders a list of links as a pager.
 */
import * as React from 'react';
export interface PagerProps {
    /**
     * The contents of the pager.
     */
    children: React.ReactNode | string;
}
/**
 * Styles a list of items (anchors inside a list) with the theme provided by the theme object, in the form of a pager.
 */
export declare const Pager: ({ children, ...props }: PagerProps) => JSX.Element;
export default Pager;
