import * as React from "react";
import type * as Common from "../../common/types";
import type { OnPageChange } from "../types";
export interface Props {
    children: number;
    onPageChange: OnPageChange;
    size: Common.InputSize;
}
declare const PageButtonLink: ({ children, onPageChange, size }: Props) => React.JSX.Element;
export default PageButtonLink;
//# sourceMappingURL=PageButtonLink.d.ts.map