import React, { HTMLProps } from 'react'; export interface PageLinkRootProps { children?: React.ReactNode; className?: string; active?: boolean; disabled?: boolean; } export type Props = HTMLProps & PageLinkRootProps; export declare const PageLinkContainer: import("styled-components").StyledComponent;